Author: Manuel Jacob Branch: remove-string-smm Changeset: r64506:eb42aa593e38 Date: 2013-05-23 00:01 +0200 http://bitbucket.org/pypy/pypy/changeset/eb42aa593e38/
Log: Kill XXXs on imports. diff --git a/pypy/objspace/std/bytearrayobject.py b/pypy/objspace/std/bytearrayobject.py --- a/pypy/objspace/std/bytearrayobject.py +++ b/pypy/objspace/std/bytearrayobject.py @@ -12,12 +12,12 @@ from pypy.objspace.std.register_all import register_all from pypy.objspace.std.stringobject import string_escape_encode -from pypy.objspace.std.unicodeobject import W_UnicodeObject # XXX: kill this whem SMMs are dead -from pypy.objspace.std.noneobject import W_NoneObject # XXX: and this one. -from pypy.objspace.std.stringobject import W_StringObject # XXX: and this too. -from pypy.objspace.std.tupleobject import W_TupleObject # XXX: ... -from pypy.objspace.std.intobject import W_IntObject # XXX: ... -from pypy.objspace.std.sliceobject import W_SliceObject # XXX: WTF. +from pypy.objspace.std.unicodeobject import W_UnicodeObject +from pypy.objspace.std.noneobject import W_NoneObject +from pypy.objspace.std.stringobject import W_StringObject +from pypy.objspace.std.tupleobject import W_TupleObject +from pypy.objspace.std.intobject import W_IntObject +from pypy.objspace.std.sliceobject import W_SliceObject class W_BytearrayObject(W_AbstractBytearrayObject): _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
