On Oct 25, 2005, at 4:00 AM, Kai Schmidt wrote:
>
> To make a longer story short: I have troubles with (my) Durus in my
> somewhat
> larger programs. I see "memory allocation errors" very often, so
> that atm
> durus is not usable for me. It just dies, no messages to follow :=(
>
I'd like to know why that those errors are there.
How big are these data sets?
Can your python make big dictionaries?
Here is a test loop posted recently.
def bigdict():
d = {}
count = 1
while True:
try:
d['x%d' % count] = str(count)
count += 1
except MemoryError, e:
print count, e
return d