Author: Vincent Legoll <vincent.leg...@idgrilles.fr>
Branch: fix-1674
Changeset: r81468:ca41c0fd4a7e
Date: 2015-12-19 12:03 +0100
http://bitbucket.org/pypy/pypy/changeset/ca41c0fd4a7e/

Log:    Add missing import

diff --git a/pypy/module/micronumpy/test/test_ndarray.py 
b/pypy/module/micronumpy/test/test_ndarray.py
--- a/pypy/module/micronumpy/test/test_ndarray.py
+++ b/pypy/module/micronumpy/test/test_ndarray.py
@@ -3253,7 +3253,7 @@
 
     def test_issue_1674(self):
         # Mask indexing does not work with a second dimension
-        from numpy import arange
+        from numpy import arange, array
         data = arange(15).reshape(3, 5) * 1.0
         # array([[  0.,   1.,   2.,   3.,   4.],
         #        [  5.,   6.,   7.,   8.,   9.],
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to