[pypy-svn] r56091 - pypy/branch/async-del/pypy/interpreter

arigo at codespeak.net arigo at codespeak.net
Thu Jun 26 21:27:06 CEST 2008


Author: arigo
Date: Thu Jun 26 21:27:03 2008
New Revision: 56091

Modified:
   pypy/branch/async-del/pypy/interpreter/executioncontext.py
Log:
Minimal fix for test_pyframe.


Modified: pypy/branch/async-del/pypy/interpreter/executioncontext.py
==============================================================================
--- pypy/branch/async-del/pypy/interpreter/executioncontext.py	(original)
+++ pypy/branch/async-del/pypy/interpreter/executioncontext.py	Thu Jun 26 21:27:03 2008
@@ -43,6 +43,8 @@
     def leave(self, frame):
         if self.profilefunc:
             self._trace(frame, 'leaveframe', None)
+        # xxx optimize a bit
+        self.space.frame_trace_action.fire()
                 
         if not frame.hide():
             self.framestack.pop()



More information about the Pypy-commit mailing list