[pypy-svn] r48944 - in pypy/dist/pypy: objspace/std objspace/std/test rlib rlib/test

cfbolz at codespeak.net cfbolz at codespeak.net
Thu Nov 22 21:12:09 CET 2007


Author: cfbolz
Date: Thu Nov 22 21:12:06 2007
New Revision: 48944

Added:
   pypy/dist/pypy/rlib/rope.py
      - copied unchanged from r48924, pypy/dist/pypy/objspace/std/rope.py
   pypy/dist/pypy/rlib/test/test_rope.py
      - copied, changed from r48924, pypy/dist/pypy/objspace/std/test/test_rope.py
Removed:
   pypy/dist/pypy/objspace/std/rope.py
   pypy/dist/pypy/objspace/std/test/test_rope.py
Modified:
   pypy/dist/pypy/objspace/std/ropeobject.py
   pypy/dist/pypy/objspace/std/ropeunicodeobject.py
Log:
move rope.py to rlib, where it really belongs


Modified: pypy/dist/pypy/objspace/std/ropeobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/ropeobject.py	(original)
+++ pypy/dist/pypy/objspace/std/ropeobject.py	Thu Nov 22 21:12:06 2007
@@ -10,7 +10,7 @@
 from pypy.rlib.rarithmetic import ovfcheck
 from pypy.objspace.std.stringtype import wrapchar
 
-from pypy.objspace.std import rope
+from pypy.rlib import rope
 from pypy.objspace.std.stringobject import mod__String_ANY as mod__Rope_ANY,\
     _upper, _lower    
 

Modified: pypy/dist/pypy/objspace/std/ropeunicodeobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/ropeunicodeobject.py	(original)
+++ pypy/dist/pypy/objspace/std/ropeunicodeobject.py	Thu Nov 22 21:12:06 2007
@@ -4,7 +4,7 @@
 from pypy.objspace.std.unicodeobject import _normalize_index
 from pypy.objspace.std.ropeobject import W_RopeObject
 from pypy.objspace.std.noneobject import W_NoneObject
-from pypy.objspace.std import rope
+from pypy.rlib import rope
 from pypy.objspace.std.sliceobject import W_SliceObject
 from pypy.objspace.std import slicetype
 from pypy.objspace.std.tupleobject import W_TupleObject



More information about the Pypy-commit mailing list