[pypy-svn] r76423 - pypy/trunk/pypy/objspace/std

agaynor at codespeak.net agaynor at codespeak.net
Sun Aug 1 12:55:04 CEST 2010


Author: agaynor
Date: Sun Aug  1 12:55:02 2010
New Revision: 76423

Modified:
   pypy/trunk/pypy/objspace/std/callmethod.py
Log:
Revert 76422, it did not fix stackless.

Modified: pypy/trunk/pypy/objspace/std/callmethod.py
==============================================================================
--- pypy/trunk/pypy/objspace/std/callmethod.py	(original)
+++ pypy/trunk/pypy/objspace/std/callmethod.py	Sun Aug  1 12:55:02 2010
@@ -89,7 +89,7 @@
         
         try:
             w_result = f.space.call_args(w_callable, args)
-            rstack.resume_point("CALL_METHOD", f, w_self, returns=w_result)
+            rstack.resume_point("CALL_METHOD", f, returns=w_result)
         finally:
             f.dropvalues(1 + (w_self is None))
     f.pushvalue(w_result)



More information about the Pypy-commit mailing list