Re: [Numpy-discussion] numpy core dump on linux

2009-09-03 Thread Charles R Harris
On Wed, Sep 2, 2009 at 4:23 PM, Jeremy Mayes wrote: > This one line causes python to core dump on linux. > numpy.lexsort([ > numpy.array(['-','-','-','-','-','-','-','-','-','-','-','-','-'])[::-1],numpy.array([732685., > 732685., 732685., 732685., 732685., 732685.,732685., 732685., > 732685

Re: [Numpy-discussion] numpy core dump on linux

2009-09-03 Thread Bruce Southey
On 09/02/2009 10:26 PM, Charles R Harris wrote: On Wed, Sep 2, 2009 at 4:23 PM, Jeremy Mayes > wrote: This one line causes python to core dump on linux. numpy.lexsort([ numpy.array(['-','-','-','-','-','-','-','-','-','-','-','-','-'])[::-1],numpy.ar

Re: [Numpy-discussion] numpy core dump on linux

2009-09-02 Thread Charles R Harris
On Wed, Sep 2, 2009 at 4:23 PM, Jeremy Mayes wrote: > This one line causes python to core dump on linux. > numpy.lexsort([ > numpy.array(['-','-','-','-','-','-','-','-','-','-','-','-','-'])[::-1],numpy.array([732685., > 732685., 732685., 732685., 732685., 732685.,732685., 732685., > 732685

Re: [Numpy-discussion] numpy core dump on linux

2009-09-02 Thread Charles R Harris
On Wed, Sep 2, 2009 at 5:19 PM, Citi, Luca wrote: > I experience the same problem. > A few more additional test cases: > > In [1]: import numpy > > In [2]: numpy.lexsort([numpy.arange(5)[::-1].copy(), numpy.arange(5)]) > Out[2]: array([0, 1, 2, 3, 4]) > > In [3]: numpy.lexsort([numpy.arange(5)[::

Re: [Numpy-discussion] numpy core dump on linux

2009-09-02 Thread Charles R Harris
On Wed, Sep 2, 2009 at 5:19 PM, Citi, Luca wrote: > I experience the same problem. > A few more additional test cases: > > In [1]: import numpy > > In [2]: numpy.lexsort([numpy.arange(5)[::-1].copy(), numpy.arange(5)]) > Out[2]: array([0, 1, 2, 3, 4]) > > In [3]: numpy.lexsort([numpy.arange(5)[::

Re: [Numpy-discussion] numpy core dump on linux

2009-09-02 Thread Citi, Luca
I experience the same problem. A few more additional test cases: In [1]: import numpy In [2]: numpy.lexsort([numpy.arange(5)[::-1].copy(), numpy.arange(5)]) Out[2]: array([0, 1, 2, 3, 4]) In [3]: numpy.lexsort([numpy.arange(5)[::-1].copy(), numpy.arange(5.)]) Out[3]: array([0, 1, 2, 3, 4]) In [

Re: [Numpy-discussion] numpy core dump on linux

2009-09-02 Thread Charles R Harris
On Wed, Sep 2, 2009 at 4:37 PM, Robert Kern wrote: > On Wed, Sep 2, 2009 at 17:23, Jeremy Mayes wrote: > > This one line causes python to core dump on linux. > > numpy.lexsort([ > > > numpy.array(['-','-','-','-','-','-','-','-','-','-','-','-','-'])[::-1],numpy.array([732685., > > 732685., 7326

Re: [Numpy-discussion] numpy core dump on linux

2009-09-02 Thread Robert Kern
On Wed, Sep 2, 2009 at 17:23, Jeremy Mayes wrote: > This one line causes python to core dump on linux. > numpy.lexsort([ > numpy.array(['-','-','-','-','-','-','-','-','-','-','-','-','-'])[::-1],numpy.array([732685., > 732685.,  732685.,  732685.,  732685.,  732685.,732685.,  732685., > 732685., 

[Numpy-discussion] numpy core dump on linux

2009-09-02 Thread Jeremy Mayes
This one line causes python to core dump on linux. numpy.lexsort([ numpy.array(['-','-','-','-','-','-','-','-','-','-','-','-','-'])[::-1],numpy.array([732685., 732685., 732685., 732685., 732685., 732685.,732685., 732685., 732685., 732685., 732685., 732685., 732679.])[::-1]]) Here's some