[pypy-svn] r73114 - pypy/branch/cleanup-objspace-init/pypy/objspace/std

benjamin at codespeak.net benjamin at codespeak.net
Mon Mar 29 20:00:48 CEST 2010


Author: benjamin
Date: Mon Mar 29 20:00:46 2010
New Revision: 73114

Modified:
   pypy/branch/cleanup-objspace-init/pypy/objspace/std/objecttype.py
Log:
cleanup import dependencies

Modified: pypy/branch/cleanup-objspace-init/pypy/objspace/std/objecttype.py
==============================================================================
--- pypy/branch/cleanup-objspace-init/pypy/objspace/std/objecttype.py	(original)
+++ pypy/branch/cleanup-objspace-init/pypy/objspace/std/objecttype.py	Mon Mar 29 20:00:46 2010
@@ -1,10 +1,10 @@
 from pypy.interpreter.error import OperationError, operationerrfmt
+from pypy.interpreter.typedef import GetSetProperty
 from pypy.objspace.descroperation import Object
 from pypy.interpreter import gateway
 from pypy.interpreter.typedef import default_identity_hash
-from pypy.objspace.std.stdtypedef import *
+from pypy.objspace.std.stdtypedef import StdTypeDef, newmethod
 from pypy.objspace.std.register_all import register_all
-from pypy.objspace.std.objspace import StdObjSpace
 
 
 def descr__repr__(space, w_obj):



More information about the Pypy-commit mailing list