Re: MemoryError Numarray
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
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