[pypy-commit] pypy py3.7: import PyPy modifications (for revdb)

cfbolz pypy.commits at gmail.com
Mon Jan 6 13:52:01 EST 2020


Author: Carl Friedrich Bolz-Tereick <cfbolz at gmx.de>
Branch: py3.7
Changeset: r98457:3749f66b8f56
Date: 2020-01-06 14:12 +0100
http://bitbucket.org/pypy/pypy/changeset/3749f66b8f56/

Log:	import PyPy modifications (for revdb)

diff --git a/pypy/interpreter/pyparser/data/Grammar3.7 b/pypy/interpreter/pyparser/data/Grammar3.7
--- a/pypy/interpreter/pyparser/data/Grammar3.7
+++ b/pypy/interpreter/pyparser/data/Grammar3.7
@@ -107,7 +107,7 @@
 atom: ('(' [yield_expr|testlist_comp] ')' |
        '[' [testlist_comp] ']' |
        '{' [dictorsetmaker] '}' |
-       NAME | NUMBER | STRING+ | '...' | 'None' | 'True' | 'False')
+       NAME | NUMBER | STRING+ | '$NUM' | '...' | 'None' | 'True' | 'False')
 testlist_comp: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] )
 trailer: '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME
 subscriptlist: subscript (',' subscript)* [',']


More information about the pypy-commit mailing list