Author: Matti Picus <[email protected]>
Branch: missing-ndarray-attributes
Changeset: r60849:41f4d672d338
Date: 2013-02-03 23:09 +0200
http://bitbucket.org/pypy/pypy/changeset/41f4d672d338/

Log:    float16 fails argsort

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
@@ -2373,7 +2373,7 @@
         from _numpypy import array, arange
         assert array(2.0).argsort() == 0
         nnp = self.non_native_prefix
-        for dtype in ['int', 'float', 'int16', 'float32',
+        for dtype in ['int', 'float', 'int16', 'float32', 'float16', 
                         nnp + 'i2', complex]:
             a = array([6, 4, -1, 3, 8, 3, 256+20, 100, 101], dtype=dtype)
             c = a.copy()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to