Memory Management in python 2.5

2006-10-09 Thread cesar . ortiz
Hi, I am starting to have a look to a python program that does not free memory (I am using python 2.4.3). As I have read about a new memory management in python 2.5 (http://evanjones.ca/python-memory.html) I decided to try the program with the new version. With the new version of python the memory

Re: Memory Management in python 2.5

2006-10-09 Thread Max M
[EMAIL PROTECTED] skrev: Hi, I am starting to have a look to a python program that does not free memory (I am using python 2.4.3). As I have read about a new memory management in python 2.5 (http://evanjones.ca/python-memory.html) I decided to try the program with the new version

Re: Memory Management in python 2.5

2006-10-09 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: Hi, I am starting to have a look to a python program that does not free memory (I am using python 2.4.3). As I have read about a new memory management in python 2.5 (http://evanjones.ca/python-memory.html) I decided to try the program with the new version

Re: Memory Management in python 2.5

2006-10-09 Thread cesar . ortiz
I just checked the comsuptiom with the 'top' unix util. I am procesing html docs and the amount of memory rises continiously. I am using a lot of lists and docs. Some of them with objects. Do i have to make any special thing in order to get them released back to the Memory Manager? For instantec..

Re: Memory Management in python 2.5

2006-10-09 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: I just checked the comsuptiom with the 'top' unix util. I am procesing html docs and the amount of memory rises continiously. what library are you using for this ? I am using a lot of lists and docs. Some of them with objects. Do i have to make any special thing in