Re: [Numpy-discussion] Crash with nested recarray on Python 3.x

2011-03-10 Thread Christoph Gohlke
On 3/9/2011 10:29 PM, Charles R Harris wrote: > > > On Wed, Mar 9, 2011 at 11:20 PM, Christoph Gohlke > wrote: > > Hello, > > the following code crashes in the last line when using numpy 1.5.1 on > Python 3.1 and 3.2, 32 and 64 bit, for Windows. It works with

Re: [Numpy-discussion] Crash with nested recarray on Python 3.x

2011-03-09 Thread Christoph Gohlke
On 3/9/2011 10:29 PM, Charles R Harris wrote: > > > On Wed, Mar 9, 2011 at 11:20 PM, Christoph Gohlke > wrote: > > Hello, > > the following code crashes in the last line when using numpy 1.5.1 on > Python 3.1 and 3.2, 32 and 64 bit, for Windows. It works with

Re: [Numpy-discussion] Crash with nested recarray on Python 3.x

2011-03-09 Thread Charles R Harris
On Wed, Mar 9, 2011 at 11:20 PM, Christoph Gohlke wrote: > Hello, > > the following code crashes in the last line when using numpy 1.5.1 on > Python 3.1 and 3.2, 32 and 64 bit, for Windows. It works with Python > 2.x. Can anyone confirm the crash on other platforms? > > import numpy > RECORD1 = [

[Numpy-discussion] Crash with nested recarray on Python 3.x

2011-03-09 Thread Christoph Gohlke
Hello, the following code crashes in the last line when using numpy 1.5.1 on Python 3.1 and 3.2, 32 and 64 bit, for Windows. It works with Python 2.x. Can anyone confirm the crash on other platforms? import numpy RECORD1 = [('i', 'i4')] RECORD2 = [('j', RECORD1, 2)] a = numpy.recarray((1,), REC