[pypy-svn] r10193 - pypy/dist/pypy/interpreter

pedronis at codespeak.net pedronis at codespeak.net
Thu Mar 31 00:06:18 CEST 2005


Author: pedronis
Date: Thu Mar 31 00:06:18 2005
New Revision: 10193

Modified:
   pypy/dist/pypy/interpreter/executioncontext.py
Log:
this change was not intended for commit



Modified: pypy/dist/pypy/interpreter/executioncontext.py
==============================================================================
--- pypy/dist/pypy/interpreter/executioncontext.py	(original)
+++ pypy/dist/pypy/interpreter/executioncontext.py	Thu Mar 31 00:06:18 2005
@@ -107,7 +107,7 @@
 
     def exception_trace(self, frame, operationerr):
         "Trace function called upon OperationError."
-        #operationerr.record_interpreter_traceback()
+        operationerr.record_interpreter_traceback()
         exc_info = self.sys_exc_info()
         self._trace(frame, 'exception',
                     exc_info)



More information about the Pypy-commit mailing list