From: Michael W. Hudson Date: Thu, 3 Oct 2002 09:42:01 +0000 (+0000) Subject: Updates to track Grammar changes. The patch to token.py loosens the regexp to X-Git-Tag: v2.3c1~3900 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=adf160616184c94ded19e99ccf5337a20d73d907;p=thirdparty%2FPython%2Fcpython.git Updates to track Grammar changes. The patch to token.py loosens the regexp to allow "testlist1" to be snagged. --- diff --git a/Lib/symbol.py b/Lib/symbol.py index 39159b3eb67f..38c619317942 100755 --- a/Lib/symbol.py +++ b/Lib/symbol.py @@ -76,6 +76,8 @@ argument = 318 list_iter = 319 list_for = 320 list_if = 321 +testlist1 = 322 +encoding_decl = 323 #--end constants-- sym_name = {} diff --git a/Lib/token.py b/Lib/token.py index c77d3430bedc..f75412c7a630 100755 --- a/Lib/token.py +++ b/Lib/token.py @@ -98,7 +98,7 @@ def main(): lines = fp.read().split("\n") fp.close() prog = re.compile( - "#define[ \t][ \t]*([A-Z][A-Z_]*)[ \t][ \t]*([0-9][0-9]*)", + "#define[ \t][ \t]*([A-Z0-9][A-Z0-9_]*)[ \t][ \t]*([0-9][0-9]*)", re.IGNORECASE) tokens = {} for line in lines: