mirror of
https://github.com/python/cpython.git
synced 2024-11-24 02:15:30 +08:00
Limit which operators get colorized
This commit is contained in:
parent
9b8ede60c1
commit
e4870b5117
@ -28,7 +28,7 @@ def colorize(source):
|
||||
kind, prev_kind = '', kind
|
||||
if tok_type == tokenize.COMMENT:
|
||||
kind = 'comment'
|
||||
elif tok_type == tokenize.OP:
|
||||
elif tok_type == tokenize.OP and tok_str[:1] not in '{}[](),.:;':
|
||||
kind = 'operator'
|
||||
elif tok_type == tokenize.STRING:
|
||||
kind = 'string'
|
||||
|
Loading…
Reference in New Issue
Block a user