[pypy-svn] r37584 - pypy/dist/pypy/objspace/std

pedronis at codespeak.net pedronis at codespeak.net
Tue Jan 30 11:54:38 CET 2007


Author: pedronis
Date: Tue Jan 30 11:54:37 2007
New Revision: 37584

Modified:
   pypy/dist/pypy/objspace/std/objspace.py
Log:
one place where valuestack -> frame argument change was not done.  test_builtin passes again.



Modified: pypy/dist/pypy/objspace/std/objspace.py
==============================================================================
--- pypy/dist/pypy/objspace/std/objspace.py	(original)
+++ pypy/dist/pypy/objspace/std/objspace.py	Tue Jan 30 11:54:37 2007
@@ -96,7 +96,7 @@
                 nargs = oparg & 0xff
                 w_function = w_value
                 try:
-                    w_result = f.space.call_valuestack(w_function, nargs, f.valuestack_w)
+                    w_result = f.space.call_valuestack(w_function, nargs, f)
                     # XXX XXX fix the problem of resume points!
                     #rstack.resume_point("CALL_FUNCTION", f, nargs, returns=w_result)
                 finally:



More information about the Pypy-commit mailing list