Re: MemoryError Numarray

2005-09-26 Thread Robert Kern
Bernhard Reimar Hoefle wrote: > I have the following python script: > ### > from numarray import * > > while 1: > a=arange(1,3) > b=a*100/100 > del a > del b > ### > > This script crashes after

MemoryError Numarray

2005-09-26 Thread Bernhard Reimar Hoefle
I have the following python script: ### from numarray import * while 1: a=arange(1,3) b=a*100/100 del a del b ### This script crashes after a few minutes with an error: MemoryError: Co