[pypy-commit] pypy py3k: Copy Grammar2.7 into Grammar3.2. No change so far

amauryfa noreply at buildbot.pypy.org
Wed Oct 12 01:45:35 CEST 2011


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: py3k
Changeset: r47958:cf11d95048c8
Date: 2011-10-12 01:13 +0200
http://bitbucket.org/pypy/pypy/changeset/cf11d95048c8/

Log:	Copy Grammar2.7 into Grammar3.2. No change so far

diff --git a/pypy/interpreter/pyparser/data/Grammar2.7 b/pypy/interpreter/pyparser/data/Grammar3.2
copy from pypy/interpreter/pyparser/data/Grammar2.7
copy to pypy/interpreter/pyparser/data/Grammar3.2
diff --git a/pypy/interpreter/pyparser/pygram.py b/pypy/interpreter/pyparser/pygram.py
--- a/pypy/interpreter/pyparser/pygram.py
+++ b/pypy/interpreter/pyparser/pygram.py
@@ -9,7 +9,7 @@
 
 def _get_python_grammar():
     here = os.path.dirname(__file__)
-    fp = open(os.path.join(here, "data", "Grammar2.7"))
+    fp = open(os.path.join(here, "data", "Grammar3.2"))
     try:
         gram_source = fp.read()
     finally:


More information about the pypy-commit mailing list