mirror of
https://github.com/python/cpython.git
synced 2024-11-24 10:24:35 +08:00
#6528 None, True, False are keywords in 3.x. Patch by Roger Serwy.
This commit is contained in:
parent
01b34afb3a
commit
dc224f82c0
@ -15,7 +15,8 @@ def any(name, alternates):
|
||||
def make_pat():
|
||||
kw = r"\b" + any("KEYWORD", keyword.kwlist) + r"\b"
|
||||
builtinlist = [str(name) for name in dir(builtins)
|
||||
if not name.startswith('_')]
|
||||
if not name.startswith('_') and \
|
||||
name not in keyword.kwlist]
|
||||
# self.file = open("file") :
|
||||
# 1st 'file' colorized normal, 2nd as builtin, 3rd as string
|
||||
builtin = r"([^.'\"\\#]\b|^)" + any("BUILTIN", builtinlist) + r"\b"
|
||||
|
@ -199,7 +199,7 @@ class ConfigDialog(Toplevel):
|
||||
("'string'",'string'),('\n var1 = ','normal'),("'selected'",'hilite'),
|
||||
('\n var2 = ','normal'),("'found'",'hit'),
|
||||
('\n var3 = ','normal'),('list', 'builtin'), ('(','normal'),
|
||||
('None', 'builtin'),(')\n\n','normal'),
|
||||
('None', 'keyword'),(')\n\n','normal'),
|
||||
(' error ','error'),(' ','normal'),('cursor |','cursor'),
|
||||
('\n ','normal'),('shell','console'),(' ','normal'),('stdout','stdout'),
|
||||
(' ','normal'),('stderr','stderr'),('\n','normal'))
|
||||
|
Loading…
Reference in New Issue
Block a user