[pypy-svn] r72000 - pypy/trunk/pypy/module/parser

arigo at codespeak.net arigo at codespeak.net
Tue Mar 9 22:12:48 CET 2010


Author: arigo
Date: Tue Mar  9 22:12:46 2010
New Revision: 72000

Modified:
   pypy/trunk/pypy/module/parser/pyparser.py
Log:
Bah.


Modified: pypy/trunk/pypy/module/parser/pyparser.py
==============================================================================
--- pypy/trunk/pypy/module/parser/pyparser.py	(original)
+++ pypy/trunk/pypy/module/parser/pyparser.py	Tue Mar  9 22:12:46 2010
@@ -54,8 +54,8 @@
 
     def descr_compile(self, space, filename="<syntax-tree>"):
         info = pyparse.CompileInfo(filename, self.mode)
-        ast = ast_from_node(space, self.tree, info)
         try:
+            ast = ast_from_node(space, self.tree, info)
             result = compile_ast(space, ast, info)
         except error.IndentationError, e:
             raise OperationError(space.w_IndentationError,



More information about the Pypy-commit mailing list