[pypy-svn] r66297 - pypy/branch/parser-compiler/pypy/interpreter/pyparser

benjamin at codespeak.net benjamin at codespeak.net
Thu Jul 16 19:12:54 CEST 2009


Author: benjamin
Date: Thu Jul 16 19:12:54 2009
New Revision: 66297

Modified:
   pypy/branch/parser-compiler/pypy/interpreter/pyparser/pyparse.py
Log:
compile_info is not optional

Modified: pypy/branch/parser-compiler/pypy/interpreter/pyparser/pyparse.py
==============================================================================
--- pypy/branch/parser-compiler/pypy/interpreter/pyparser/pyparse.py	(original)
+++ pypy/branch/parser-compiler/pypy/interpreter/pyparser/pyparse.py	Thu Jul 16 19:12:54 2009
@@ -77,7 +77,7 @@
         parser.Parser.__init__(self, grammar)
         self.space = space
 
-    def parse_source(self, textsrc, compile_info=None):
+    def parse_source(self, textsrc, compile_info):
         """Parse a python source according to goal"""
         # Detect source encoding.
         enc = None



More information about the Pypy-commit mailing list