Re: [Numpy-discussion] Using loadtxt() twice on same file freezes python

2009-03-26 Thread Pauli Virtanen
Thu, 26 Mar 2009 21:24:30 +0100, Sander de Kievit wrote: > David Cournapeau wrote: >> On Fri, Mar 27, 2009 at 1:14 AM, Sander de Kievit >> wrote: >>> On my PC the following code freezes python: >>> >>> [code] >>> import numpy as np >>> from StringIO import StringIO >>> c = StringIO("0 1\n2 3") >>>

Re: [Numpy-discussion] Using loadtxt() twice on same file freezes python

2009-03-26 Thread Ryan May
On Thu, Mar 26, 2009 at 3:24 PM, Sander de Kievit < dekie...@strw.leidenuniv.nl> wrote: > David Cournapeau wrote: > > On Fri, Mar 27, 2009 at 1:14 AM, Sander de Kievit > > wrote: > >> Hi, > >> > >> On my PC the following code freezes python: > >> > >> [code] > >> import numpy as np > >> from Stri

Re: [Numpy-discussion] Using loadtxt() twice on same file freezes python

2009-03-26 Thread Sander de Kievit
David Cournapeau wrote: > On Fri, Mar 27, 2009 at 1:14 AM, Sander de Kievit > wrote: >> Hi, >> >> On my PC the following code freezes python: >> >> [code] >> import numpy as np >> from StringIO import StringIO >> c = StringIO("0 1\n2 3") >> np.loadtxt(c) >> np.loadtxt(c) >> [/code] >> >> Is this i

Re: [Numpy-discussion] Using loadtxt() twice on same file freezes python

2009-03-26 Thread Pauli Virtanen
Fri, 27 Mar 2009 01:58:47 +0900, David Cournapeau wrote: > On Fri, Mar 27, 2009 at 1:14 AM, Sander de Kievit [clip] >> On my PC the following code freezes python: >> >> [code] >> import numpy as np >> from StringIO import StringIO >> c = StringIO("0 1\n2 3") >> np.loadtxt(c) >> np.loadtxt(c) >> [/c

Re: [Numpy-discussion] Using loadtxt() twice on same file freezes python

2009-03-26 Thread David Cournapeau
On Fri, Mar 27, 2009 at 1:14 AM, Sander de Kievit wrote: > Hi, > > On my PC the following code freezes python: > > [code] > import numpy as np > from StringIO import StringIO > c = StringIO("0 1\n2 3") > np.loadtxt(c) > np.loadtxt(c) > [/code] > > Is this intentional behaviour or should I report t

[Numpy-discussion] Using loadtxt() twice on same file freezes python

2009-03-26 Thread Sander de Kievit
Hi, On my PC the following code freezes python: [code] import numpy as np from StringIO import StringIO c = StringIO("0 1\n2 3") np.loadtxt(c) np.loadtxt(c) [/code] Is this intentional behaviour or should I report this as a bug? Regards, Sander ___ Nu