[pypy-svn] r25712 - pypy/dist/pypy/objspace/flow

arigo at codespeak.net arigo at codespeak.net
Wed Apr 12 10:28:09 CEST 2006


Author: arigo
Date: Wed Apr 12 10:28:07 2006
New Revision: 25712

Modified:
   pypy/dist/pypy/objspace/flow/objspace.py
Log:
Leftovers.


Modified: pypy/dist/pypy/objspace/flow/objspace.py
==============================================================================
--- pypy/dist/pypy/objspace/flow/objspace.py	(original)
+++ pypy/dist/pypy/objspace/flow/objspace.py	Wed Apr 12 10:28:07 2006
@@ -63,8 +63,6 @@
         #self.make_sys()
         # objects which should keep their SomeObjectness
         self.not_really_const = NOT_REALLY_CONST
-        # tracking variables which might in turn turn into constants.
-        self.const_tracker = None
 
     def enter_cache_building_mode(self):
         # when populating the caches, the flow space switches to
@@ -193,8 +191,6 @@
         self.executioncontext = ec
         from pypy.objspace.flow import specialcase
         specialcase.setup(self)
-        self.const_tracker = None
-        # maybe it would be cleaner to have the tracker in the EC itself?
 
     def exception_match(self, w_exc_type, w_check_class):
         self.executioncontext.recorder.crnt_block.exc_handler = True



More information about the Pypy-commit mailing list