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

cfbolz at codespeak.net cfbolz at codespeak.net
Wed Apr 15 18:38:36 CEST 2009


Author: cfbolz
Date: Wed Apr 15 18:38:34 2009
New Revision: 64109

Modified:
   pypy/trunk/pypy/interpreter/gateway.py
Log:
(cfbolz, pedronis): kill strange old code. The CPy obj space is dead.


Modified: pypy/trunk/pypy/interpreter/gateway.py
==============================================================================
--- pypy/trunk/pypy/interpreter/gateway.py	(original)
+++ pypy/trunk/pypy/interpreter/gateway.py	Wed Apr 15 18:38:34 2009
@@ -810,8 +810,6 @@
         return Module(space, space.wrap(name), self.getwdict(space))
 
     def wget(self, space, name): 
-        if hasattr(space, '_applevelclass_hook'):   # XXX for the CPyObjSpace
-            return space._applevelclass_hook(self, name)
         w_globals = self.getwdict(space) 
         return space.getitem(w_globals, space.wrap(name))
 



More information about the Pypy-commit mailing list