[pypy-commit] pypy remove-string-smm: Kill XXXs on imports.

Manuel Jacob noreply at buildbot.pypy.org
Thu May 23 03:15:11 CEST 2013


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):


More information about the pypy-commit mailing list