[pypy-svn] r73682 - pypy/branch/decouple-host-opcodes/pypy/interpreter
fijal at codespeak.net
fijal at codespeak.net
Mon Apr 12 22:47:55 CEST 2010
Author: fijal
Date: Mon Apr 12 22:47:54 2010
New Revision: 73682
Modified:
pypy/branch/decouple-host-opcodes/pypy/interpreter/baseobjspace.py
Log:
fix
Modified: pypy/branch/decouple-host-opcodes/pypy/interpreter/baseobjspace.py
==============================================================================
--- pypy/branch/decouple-host-opcodes/pypy/interpreter/baseobjspace.py (original)
+++ pypy/branch/decouple-host-opcodes/pypy/interpreter/baseobjspace.py Mon Apr 12 22:47:54 2010
@@ -958,7 +958,7 @@
if isinstance(statement, str):
compiler = self.createcompiler()
statement = compiler.compile(statement, filename, 'exec', 0,
- hidden_applevel=True)
+ hidden_applevel=hidden_applevel)
if isinstance(statement, types.CodeType):
statement = PyCode._from_code(self, statement,
hidden_applevel=hidden_applevel)
More information about the Pypy-commit
mailing list