[pypy-svn] r60841 - pypy/branch/oo-jit/pypy/rpython/lltypesystem
fijal at codespeak.net
fijal at codespeak.net
Thu Jan 8 13:21:50 CET 2009
Author: fijal
Date: Thu Jan 8 13:21:49 2009
New Revision: 60841
Modified:
pypy/branch/oo-jit/pypy/rpython/lltypesystem/ll2ctypes.py
Log:
oops, missing import
Modified: pypy/branch/oo-jit/pypy/rpython/lltypesystem/ll2ctypes.py
==============================================================================
--- pypy/branch/oo-jit/pypy/rpython/lltypesystem/ll2ctypes.py (original)
+++ pypy/branch/oo-jit/pypy/rpython/lltypesystem/ll2ctypes.py Thu Jan 8 13:21:49 2009
@@ -18,6 +18,7 @@
from pypy.rpython.llinterp import LLInterpreter
from pypy.rpython.lltypesystem.rclass import OBJECT
from pypy.rpython.annlowlevel import base_ptr_lltype
+from pypy.rpython import raddress
def uaddressof(obj):
return fixid(ctypes.addressof(obj))
More information about the Pypy-commit
mailing list