[pypy-svn] r70320 - pypy/branch/jit-delayed-write/pypy/objspace/flow

arigo at codespeak.net arigo at codespeak.net
Tue Dec 29 09:27:15 CET 2009


Author: arigo
Date: Tue Dec 29 09:27:14 2009
New Revision: 70320

Modified:
   pypy/branch/jit-delayed-write/pypy/objspace/flow/flowcontext.py
Log:
Small performance improvement.


Modified: pypy/branch/jit-delayed-write/pypy/objspace/flow/flowcontext.py
==============================================================================
--- pypy/branch/jit-delayed-write/pypy/objspace/flow/flowcontext.py	(original)
+++ pypy/branch/jit-delayed-write/pypy/objspace/flow/flowcontext.py	Tue Dec 29 09:27:14 2009
@@ -384,6 +384,9 @@
             operr = OperationError(operr.w_type, operr.w_value)
         return operr
 
+    def exception_trace(self, frame, operationerr):
+        pass    # overridden for performance only
+
     # hack for unrolling iterables, don't use this
     def replace_in_stack(self, oldvalue, newvalue):
         w_new = Constant(newvalue)



More information about the Pypy-commit mailing list