mikefc <[email protected]> added the comment:

I can make the test pass by changing /pypy/module/micronumpy/arrayimpl/sort.py

Just allocate twice as much memory for the indexes i.e.
-            indexes = dtype.itemtype.malloc(size*dtype.get_size())             
                                                 
+            indexes = dtype.itemtype.malloc(2 * size * dtype.get_size())

This is not a fix, obviously. But at least it narrows the hunt...

________________________________________
PyPy bug tracker <[email protected]>
<https://bugs.pypy.org/issue1510>
________________________________________
_______________________________________________
pypy-issue mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-issue

Reply via email to