[pypy-commit] pypy list-strategies: import fix

l.diekmann noreply at buildbot.pypy.org
Fri Sep 23 13:15:07 CEST 2011


Author: Lukas Diekmann <lukas.diekmann at uni-duesseldorf.de>
Branch: list-strategies
Changeset: r47536:72cba269bc37
Date: 2011-09-06 13:23 +0200
http://bitbucket.org/pypy/pypy/changeset/72cba269bc37/

Log:	import fix

diff --git a/pypy/objspace/std/listobject.py b/pypy/objspace/std/listobject.py
--- a/pypy/objspace/std/listobject.py
+++ b/pypy/objspace/std/listobject.py
@@ -1170,7 +1170,7 @@
 
 class StringSort(SimpleSort):
     def lt(self, w_str1, w_str2):
-        from pypy.objspace.std.intobject import W_StringObject
+        from pypy.objspace.std.stringobject import W_StringObject
         assert isinstance(w_int1, W_StringObject)
         assert isinstance(w_int2, W_StringObject)
         space = self.space


More information about the pypy-commit mailing list