Author: Ronan Lamy <ronan.l...@gmail.com>
Branch: numpy-ctypes
Changeset: r79846:11de22433404
Date: 2015-09-26 04:00 +0100
http://bitbucket.org/pypy/pypy/changeset/11de22433404/

Log:    fix another typo

diff --git a/pypy/module/micronumpy/ndarray.py 
b/pypy/module/micronumpy/ndarray.py
--- a/pypy/module/micronumpy/ndarray.py
+++ b/pypy/module/micronumpy/ndarray.py
@@ -750,7 +750,7 @@
         w_result = space.appexec([self], """(arr):
             from numpy.core import _internal
             p_data = arr.__array_interface__['data'][0]
-            return _internal.ctypes(arr, p_data)
+            return _internal._ctypes(arr, p_data)
         """)
         return w_result
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to