[pypy-svn] r66335 - pypy/branch/parser-compiler/pypy/interpreter/astcompiler

benjamin at codespeak.net benjamin at codespeak.net
Fri Jul 17 23:38:49 CEST 2009


Author: benjamin
Date: Fri Jul 17 23:38:49 2009
New Revision: 66335

Modified:
   pypy/branch/parser-compiler/pypy/interpreter/astcompiler/codegen.py
Log:
help annotator

Modified: pypy/branch/parser-compiler/pypy/interpreter/astcompiler/codegen.py
==============================================================================
--- pypy/branch/parser-compiler/pypy/interpreter/astcompiler/codegen.py	(original)
+++ pypy/branch/parser-compiler/pypy/interpreter/astcompiler/codegen.py	Fri Jul 17 23:38:49 2009
@@ -716,6 +716,7 @@
         self.update_position(comp)
         comp.left.walkabout(self)
         ops_count = len(comp.ops)
+        cleanup = None
         if ops_count > 1:
             cleanup = self.new_block()
             comp.comparators[0].walkabout(self)



More information about the Pypy-commit mailing list