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

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Oct 30 14:48:12 CET 2006


Author: cfbolz
Date: Mon Oct 30 14:48:11 2006
New Revision: 33885

Added:
   pypy/dist/pypy/rlib/
   pypy/dist/pypy/rlib/__init__.py
   pypy/dist/pypy/rlib/rlong.py
      - copied unchanged from r33805, pypy/dist/pypy/rpython/rlong.py
   pypy/dist/pypy/rlib/test/
   pypy/dist/pypy/rlib/test/__init__.py
   pypy/dist/pypy/rlib/test/test_rlong.py
      - copied, changed from r33805, pypy/dist/pypy/rpython/test/test_rlong.py
Removed:
   pypy/dist/pypy/rpython/rlong.py
   pypy/dist/pypy/rpython/test/test_rlong.py
Modified:
   pypy/dist/pypy/objspace/std/longobject.py
Log:
create an rlib directory that is meant to be used for rpython library modules.
Move rlong there as a first step, should be more.


Modified: pypy/dist/pypy/objspace/std/longobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/longobject.py	(original)
+++ pypy/dist/pypy/objspace/std/longobject.py	Mon Oct 30 14:48:11 2006
@@ -2,7 +2,7 @@
 from pypy.objspace.std.objspace import *
 from pypy.objspace.std.intobject import W_IntObject
 from pypy.objspace.std.noneobject import W_NoneObject
-from pypy.rpython.rlong import rlong, SHIFT
+from pypy.rlib.rlong import rlong, SHIFT
 
 class W_LongObject(W_Object):
     """This is a wrapper of rlong."""

Added: pypy/dist/pypy/rlib/__init__.py
==============================================================================

Added: pypy/dist/pypy/rlib/test/__init__.py
==============================================================================



More information about the Pypy-commit mailing list