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

antocuni at codespeak.net antocuni at codespeak.net
Tue Jan 27 16:05:12 CET 2009


Author: antocuni
Date: Tue Jan 27 16:05:12 2009
New Revision: 61392

Modified:
   pypy/trunk/pypy/interpreter/executioncontext.py
Log:
(antocuni, arigo) 
this check is non-sense



Modified: pypy/trunk/pypy/interpreter/executioncontext.py
==============================================================================
--- pypy/trunk/pypy/interpreter/executioncontext.py	(original)
+++ pypy/trunk/pypy/interpreter/executioncontext.py	Tue Jan 27 16:05:12 2009
@@ -211,7 +211,7 @@
             self.is_tracing = is_tracing
 
     def _trace(self, frame, event, w_arg, operr=None):
-        if self.is_tracing or frame.hide() or frame is None:
+        if self.is_tracing or frame.hide():
             return
 
         space = self.space



More information about the Pypy-commit mailing list