[pypy-svn] r9286 - pypy/branch/dist-interpapp/pypy/interpreter

pedronis at codespeak.net pedronis at codespeak.net
Thu Feb 17 19:06:35 CET 2005


Author: pedronis
Date: Thu Feb 17 19:06:35 2005
New Revision: 9286

Modified:
   pypy/branch/dist-interpapp/pypy/interpreter/pyopcode.py
Log:
small fix



Modified: pypy/branch/dist-interpapp/pypy/interpreter/pyopcode.py
==============================================================================
--- pypy/branch/dist-interpapp/pypy/interpreter/pyopcode.py	(original)
+++ pypy/branch/dist-interpapp/pypy/interpreter/pyopcode.py	Thu Feb 17 19:06:35 2005
@@ -348,7 +348,7 @@
         w_prog    = f.valuestack.pop()
         w_compile_flags = f.space.wrap(f.get_compile_flags())
         w_resulttuple = prepare_exec(f.space, f.space.wrap(f), w_prog, w_globals, w_locals,
-                                       w_compile_flags, space.wrap(f.builtin))
+                                       w_compile_flags, f.space.wrap(f.builtin))
         w_prog, w_globals, w_locals = f.space.unpacktuple(w_resulttuple, 3)
 
         plain = f.space.is_true(f.space.is_(w_locals, f.w_locals))



More information about the Pypy-commit mailing list