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

benjamin at codespeak.net benjamin at codespeak.net
Sun Apr 18 03:28:48 CEST 2010


Author: benjamin
Date: Sun Apr 18 03:28:31 2010
New Revision: 73867

Modified:
   pypy/trunk/pypy/interpreter/gateway.py
Log:
unused import

Modified: pypy/trunk/pypy/interpreter/gateway.py
==============================================================================
--- pypy/trunk/pypy/interpreter/gateway.py	(original)
+++ pypy/trunk/pypy/interpreter/gateway.py	Sun Apr 18 03:28:31 2010
@@ -919,7 +919,6 @@
 
 def build_applevel_dict(self, space):
     "NOT_RPYTHON"
-    from pypy.interpreter.pycode import PyCode
     w_glob = space.newdict(module=True)
     space.setitem(w_glob, space.wrap('__name__'), space.wrap(self.modname))
     space.exec_(self.source, w_glob, w_glob,



More information about the Pypy-commit mailing list