Author: Matti Picus <[email protected]>
Branch: missing-ndarray-attributes
Changeset: r60843:6de4c9815dae
Date: 2013-02-03 23:00 +0200
http://bitbucket.org/pypy/pypy/changeset/6de4c9815dae/

Log:    complex fails

diff --git a/pypy/module/micronumpy/test/test_numarray.py 
b/pypy/module/micronumpy/test/test_numarray.py
--- a/pypy/module/micronumpy/test/test_numarray.py
+++ b/pypy/module/micronumpy/test/test_numarray.py
@@ -2374,7 +2374,7 @@
         assert array(2.0).argsort() == 0
         nnp = self.non_native_prefix
         for dtype in ['int', 'float', 'int16', 'float32',
-                        nnp + 'i2']:
+                        nnp + 'i2', complex]:
             a = array([6, 4, -1, 3, 8, 3, 256+20, 100, 101], dtype=dtype)
             c = a.copy()
             res = a.argsort()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to