[pypy-svn] r49596 - pypy/dist/pypy/rlib/parsing

fijal at codespeak.net fijal at codespeak.net
Mon Dec 10 15:01:25 CET 2007


Author: fijal
Date: Mon Dec 10 15:01:24 2007
New Revision: 49596

Modified:
   pypy/dist/pypy/rlib/parsing/main.py
Log:
Ooops, forgotten to check in this line.


Modified: pypy/dist/pypy/rlib/parsing/main.py
==============================================================================
--- pypy/dist/pypy/rlib/parsing/main.py	(original)
+++ pypy/dist/pypy/rlib/parsing/main.py	Mon Dec 10 15:01:24 2007
@@ -6,6 +6,7 @@
 def make_parser_from_file(filename):
     try:
         t = py.path.local(filename).read(mode='U')
+        regexs, rules, ToAST = parse_ebnf(t)
     except ParserError, e:
         print e.nice_error_message(filename=filename, source=t)
         raise



More information about the Pypy-commit mailing list