Re: [Numpy-discussion] Segmentation fault with pickled numpy float64 arrays since 1.8

2013-12-21 Thread Hugo Gagnon
Mac OS 10.8.5 -- Hugo Gagnon On 2013-12-21, at 5:20 PM, Charles R Harris wrote: > > > > On Sat, Dec 21, 2013 at 2:16 PM, Hugo Gagnon > wrote: > Hi, > > Since I've updated numpy from 1.7 to 1.8 with EPD I get segmentation faults > whenever I load back pickled float64 arrays. Here's a m

Re: [Numpy-discussion] Segmentation fault with pickled numpy float64 arrays since 1.8

2013-12-21 Thread Charles R Harris
On Sat, Dec 21, 2013 at 2:16 PM, Hugo Gagnon < opensource.nu...@user.fastmail.fm> wrote: > Hi, > > Since I've updated numpy from 1.7 to 1.8 with EPD I get segmentation > faults whenever I load back pickled float64 arrays. Here's a minimal > example: > > """ > > import numpy > import cPickle > > a

[Numpy-discussion] Segmentation fault with pickled numpy float64 arrays since 1.8

2013-12-21 Thread Hugo Gagnon
Hi, Since I've updated numpy from 1.7 to 1.8 with EPD I get segmentation faults whenever I load back pickled float64 arrays. Here's a minimal example: """ import numpy import cPickle a = numpy.arange(5, dtype='float64') with open('test.p', 'wb') as fh: cPickle.dump(a, fh) with open('tes