[pypy-svn] r9168 - in pypy/branch/dist-interpapp/pypy: interpreter objspace/flow

hpk at codespeak.net hpk at codespeak.net
Sat Feb 12 17:38:55 CET 2005


Author: hpk
Date: Sat Feb 12 17:38:55 2005
New Revision: 9168

Modified:
   pypy/branch/dist-interpapp/pypy/interpreter/baseobjspace.py
   pypy/branch/dist-interpapp/pypy/objspace/flow/objspace.py
Log:
removed leftover code 


Modified: pypy/branch/dist-interpapp/pypy/interpreter/baseobjspace.py
==============================================================================
--- pypy/branch/dist-interpapp/pypy/interpreter/baseobjspace.py	(original)
+++ pypy/branch/dist-interpapp/pypy/interpreter/baseobjspace.py	Sat Feb 12 17:38:55 2005
@@ -48,7 +48,6 @@
         # initializing builtins may require creating a frame which in
         # turn already accesses space.w_builtins, provide a dummy one ...
         self.w_builtins = self.newdict([])
-        self.w_apphelper_globals = self.newdict([])
 
         # insert stuff into the newly-made builtins
         for key, w_value in for_builtins.items():

Modified: pypy/branch/dist-interpapp/pypy/objspace/flow/objspace.py
==============================================================================
--- pypy/branch/dist-interpapp/pypy/objspace/flow/objspace.py	(original)
+++ pypy/branch/dist-interpapp/pypy/objspace/flow/objspace.py	Sat Feb 12 17:38:55 2005
@@ -53,7 +53,6 @@
         #self.make_builtins()
         #self.make_sys()
         self.w_sys = self.wrap(sys)
-        self.w_apphelper_globals = Constant({}) 
 
     def loadfromcache(self, key, builder, cache):
         # when populating the caches, the flow space switches to



More information about the Pypy-commit mailing list