Author: Alexander Hesse <[email protected]>
Branch: split-rpython
Changeset: r60149:984aeff7a78d
Date: 2013-01-17 21:49 +0100
http://bitbucket.org/pypy/pypy/changeset/984aeff7a78d/

Log:    Fixed missing import

diff --git a/pypy/module/micronumpy/interp_numarray.py 
b/pypy/module/micronumpy/interp_numarray.py
--- a/pypy/module/micronumpy/interp_numarray.py
+++ b/pypy/module/micronumpy/interp_numarray.py
@@ -570,8 +570,8 @@
     Create an array from an existing buffer, given its address as int.
     PyPy-only implementation detail.
     """
-    from pypy.rpython.lltypesystem import rffi
-    from pypy.rlib.rawstorage import RAW_STORAGE_PTR
+    from rpython.rtyper.lltypesystem import rffi
+    from rpython.rlib.rawstorage import RAW_STORAGE_PTR
     shape = _find_shape(space, w_shape)
     storage = rffi.cast(RAW_STORAGE_PTR, addr)
     dtype = space.interp_w(interp_dtype.W_Dtype,
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to