[pypy-svn] r59031 - pypy/trunk/pypy/interpreter

cfbolz at codespeak.net cfbolz at codespeak.net
Sun Oct 12 15:11:54 CEST 2008


Author: cfbolz
Date: Sun Oct 12 15:11:52 2008
New Revision: 59031

Modified:
   pypy/trunk/pypy/interpreter/executioncontext.py
Log:
(cfbolz, arigo around): fix stackless failures


Modified: pypy/trunk/pypy/interpreter/executioncontext.py
==============================================================================
--- pypy/trunk/pypy/interpreter/executioncontext.py	(original)
+++ pypy/trunk/pypy/interpreter/executioncontext.py	Sun Oct 12 15:11:52 2008
@@ -71,7 +71,8 @@
         def leave(self, ec):
             self.framestack = ec.framestack
             self.w_tracefunc = ec.w_tracefunc
-            self.setllprofile(ec.profilefunc, ec.w_profilefuncarg)
+            self.profilefunc = ec.profilefunc
+            self.w_profilefuncarg = ec.w_profilefuncarg 
             self.is_tracing = ec.is_tracing
 
         # the following interface is for pickling and unpickling



More information about the Pypy-commit mailing list