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

rxe at codespeak.net rxe at codespeak.net
Mon Mar 21 20:53:31 CET 2005


Author: rxe
Date: Mon Mar 21 20:53:30 2005
New Revision: 10014

Modified:
   pypy/dist/pypy/interpreter/executioncontext.py
Log:
Cosmetic


Modified: pypy/dist/pypy/interpreter/executioncontext.py
==============================================================================
--- pypy/dist/pypy/interpreter/executioncontext.py	(original)
+++ pypy/dist/pypy/interpreter/executioncontext.py	Mon Mar 21 20:53:30 2005
@@ -117,8 +117,6 @@
         else:
             frame.instr_ub = sys.maxint
 
-
-
     def exception_trace(self, operationerr):
         "Trace function called upon OperationError."
         operationerr.record_interpreter_traceback()
@@ -160,10 +158,7 @@
             w_callback = frame.w_f_trace
         if self.is_tracing or w_callback is None:
             return
-        # To get better results when running test_trace.py
-        #if frame.code.co_filename.find('/lib-python-2.3.4/') <0:
-        #    print 'Skipping', event, frame.code.co_name
-        #    return
+
         self.is_tracing += 1
         try:
             try:



More information about the Pypy-commit mailing list