Author: mattip <[email protected]>
Branch: str-dtype-improvement
Changeset: r62348:442ac683b187
Date: 2013-03-14 12:58 -0700
http://bitbucket.org/pypy/pypy/changeset/442ac683b187/
Log: a failing test (passes in numpy)
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
@@ -1480,6 +1480,8 @@
a = (a + a)[::2]
b = concatenate((a[:3], a[-3:]))
assert (b == [2, 6, 10, 2, 6, 10]).all()
+ a = concatenate((array([]), array(['abc'])))
+ assert a[0] == 'abc'
def test_std(self):
from numpypy import array
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit