[pypy-commit] pypy missing-ndarray-attributes: complex fails

mattip noreply at buildbot.pypy.org
Sun Feb 3 22:05:39 CET 2013


Author: Matti Picus <matti.picus at gmail.com>
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()


More information about the pypy-commit mailing list