[pypy-svn] r34768 - pypy/dist/pypy/interpreter/astcompiler

cfbolz at codespeak.net cfbolz at codespeak.net
Sun Nov 19 19:46:09 CET 2006


Author: cfbolz
Date: Sun Nov 19 19:46:08 2006
New Revision: 34768

Modified:
   pypy/dist/pypy/interpreter/astcompiler/pycodegen.py
Log:
add default for attribute localsfullyknown (mostly to avoid my own confusion)


Modified: pypy/dist/pypy/interpreter/astcompiler/pycodegen.py
==============================================================================
--- pypy/dist/pypy/interpreter/astcompiler/pycodegen.py	(original)
+++ pypy/dist/pypy/interpreter/astcompiler/pycodegen.py	Sun Nov 19 19:46:08 2006
@@ -137,6 +137,8 @@
     """Defines basic code generator for Python bytecode
     """
 
+    localsfullyknown = False
+
     def __init__(self, space, graph):
         self.space = space
         self.setups = [] 



More information about the Pypy-commit mailing list