[pypy-svn] r45685 - in pypy/branch/pypy-more-rtti-inprogress/rpython: lltypesystem lltypesystem/test tool tool/test

fijal at codespeak.net fijal at codespeak.net
Wed Aug 15 16:48:52 CEST 2007


Author: fijal
Date: Wed Aug 15 16:48:52 2007
New Revision: 45685

Added:
   pypy/branch/pypy-more-rtti-inprogress/rpython/tool/ctypes_platform.py
      - copied unchanged from r45676, pypy/branch/pypy-more-rtti-inprogress/rpython/rctypes/tool/ctypes_platform.py
   pypy/branch/pypy-more-rtti-inprogress/rpython/tool/rfficache.py
      - copied unchanged from r45676, pypy/branch/pypy-more-rtti-inprogress/rpython/lltypesystem/rfficache.py
   pypy/branch/pypy-more-rtti-inprogress/rpython/tool/test/test_rfficache.py
      - copied, changed from r45676, pypy/branch/pypy-more-rtti-inprogress/rpython/lltypesystem/test/test_rfficache.py
Removed:
   pypy/branch/pypy-more-rtti-inprogress/rpython/lltypesystem/rfficache.py
   pypy/branch/pypy-more-rtti-inprogress/rpython/lltypesystem/test/test_rfficache.py
Modified:
   pypy/branch/pypy-more-rtti-inprogress/rpython/lltypesystem/rffi.py
Log:
A bit of shuffling around to keep rfficache in rpython/tool
Fixed imports
Copied ctypes_platform as intermediate checkin for a merge attempt


Modified: pypy/branch/pypy-more-rtti-inprogress/rpython/lltypesystem/rffi.py
==============================================================================
--- pypy/branch/pypy-more-rtti-inprogress/rpython/lltypesystem/rffi.py	(original)
+++ pypy/branch/pypy-more-rtti-inprogress/rpython/lltypesystem/rffi.py	Wed Aug 15 16:48:52 2007
@@ -36,7 +36,7 @@
         ll2ctypes.make_callable_via_ctypes(funcptr)
     return funcptr
 
-from pypy.rpython.lltypesystem.rfficache import platform
+from pypy.rpython.tool.rfficache import platform
 
 TYPES = []
 for _name in 'short int long'.split():



More information about the Pypy-commit mailing list