[pypy-svn] r65902 - pypy/branch/pyjitpl5/pypy/jit/tl/spli

benjamin at codespeak.net benjamin at codespeak.net
Wed Jun 24 05:19:23 CEST 2009


Author: benjamin
Date: Wed Jun 24 05:19:16 2009
New Revision: 65902

Modified:
   pypy/branch/pyjitpl5/pypy/jit/tl/spli/interpreter.py
Log:
return result of frame

Modified: pypy/branch/pyjitpl5/pypy/jit/tl/spli/interpreter.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/tl/spli/interpreter.py	(original)
+++ pypy/branch/pyjitpl5/pypy/jit/tl/spli/interpreter.py	Wed Jun 24 05:19:16 2009
@@ -21,7 +21,7 @@
     space = objects.DumbObjSpace()
     pyco = Code._from_code(space, co)
     print dis.dis(co)
-    run(pyco, args, space)
+    return run(pyco, args, space)
 
 def run(pyco, args, space=None):
     if space is None:



More information about the Pypy-commit mailing list