[pypy-commit] pypy remove-remaining-smm: Kill dead imports.

Manuel Jacob noreply at buildbot.pypy.org
Mon Feb 24 00:19:09 CET 2014


Author: Manuel Jacob
Branch: remove-remaining-smm
Changeset: r69312:83173344840d
Date: 2014-02-23 23:47 +0100
http://bitbucket.org/pypy/pypy/changeset/83173344840d/

Log:	Kill dead imports.

diff --git a/pypy/objspace/std/complexobject.py b/pypy/objspace/std/complexobject.py
--- a/pypy/objspace/std/complexobject.py
+++ b/pypy/objspace/std/complexobject.py
@@ -3,11 +3,8 @@
 from pypy.interpreter.error import OperationError, oefmt
 from pypy.interpreter.gateway import interp2app, unwrap_spec, WrappedDefault
 from pypy.objspace.std import newformat
-from pypy.objspace.std.floatobject import W_FloatObject, _hash_float
-from pypy.objspace.std.intobject import W_IntObject
-from pypy.objspace.std.longobject import W_LongObject
+from pypy.objspace.std.floatobject import _hash_float
 from pypy.objspace.std.model import registerimplementation, W_Object
-from pypy.objspace.std.noneobject import W_NoneObject
 from pypy.objspace.std.register_all import register_all
 from pypy.objspace.std.stdtypedef import GetSetProperty, StdTypeDef
 from rpython.rlib import jit, rcomplex


More information about the pypy-commit mailing list