Re: Memory leak when creating lots of object

2007-08-18 Thread Paul Moore
On 17 Aug, 04:51, Godzilla [EMAIL PROTECTED] wrote: On Aug 16, 1:13 am, Paul Moore[EMAIL PROTECTED] wrote: On 14 Aug, 05:57, Godzilla [EMAIL PROTECTED] wrote: Do you see memory growth with precisely this code? Over what period? How much? I have it running for more than 1 hour... the main

Re: Memory leak when creating lots of object

2007-08-17 Thread Terry Reedy
Godzilla [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] | What should I do next? Can I force garbage collection manually? If so, | how do I do that? Read doc for gc module. I think import gc gc.collect() -- http://mail.python.org/mailman/listinfo/python-list

Re: Memory leak when creating lots of object

2007-08-16 Thread Godzilla
On Aug 16, 1:13 am, Paul Moore [EMAIL PROTECTED] wrote: On 14 Aug, 05:57, Godzilla [EMAIL PROTECTED] wrote: Hello, I have a program that create and pop an object off a queue, but it is experiencing some memory leakage. I have been unable to detect where the memory leakage occur. The

Re: Memory leak when creating lots of object

2007-08-15 Thread Paul Moore
On 14 Aug, 05:57, Godzilla [EMAIL PROTECTED] wrote: Hello, I have a program that create and pop an object off a queue, but it is experiencing some memory leakage. I have been unable to detect where the memory leakage occur. The strange thing is when i replace the object creation with a plain

Memory leak when creating lots of object

2007-08-13 Thread Godzilla
Hello, I have a program that create and pop an object off a queue, but it is experiencing some memory leakage. I have been unable to detect where the memory leakage occur. The strange thing is when i replace the object creation with a plain integer/string, the leak goes away... Here's the code I