durusmail: durus-users: Durus: my experience and trouble
Durus: my experience and trouble
2005-10-25
2005-10-25
2005-10-25
2005-10-25
2005-10-25
Durus: my experience and trouble [SOLVED]
2005-10-26
Durus: my experience and trouble
David Binger
2005-10-25
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



reply