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&q

[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