RE: Urgent : How to do memory leaks detection in python ?

2008-03-17 Thread Pradeep Rai
PROTECTED] *On Behalf Of *tsuraan *Sent:* 16 March 2008 8:27 AM *To:* python-list@python.org *Subject:* Re: Urgent : How to do memory leaks detection in python ? Python doesn't have memory leaks. Yeah, interesting bit of trivia: python is the world's only non-trivial program that's totally free

Re: Urgent : How to do memory leaks detection in python ?

2008-03-17 Thread Sean Allen
On Mar 17, 2008, at 3:21 AM, Pradeep Rai wrote: Thanks for your inputs !!! I have installed python v 2.5 on my Linux machine and executing the tool again. I would like to share the memory status( using free -m command ) before and after the execution of the tool. BEFORE EXECUTION

Re: Urgent : How to do memory leaks detection in python ?

2008-03-15 Thread tsuraan
Python doesn't have memory leaks. Yeah, interesting bit of trivia: python is the world's only non-trivial program that's totally free of bugs. Pretty exciting! But seriously, python 2.4, at least, does have some pretty trivially exposed memory leaks when working with strings. A simple example

Urgent : How to do memory leaks detection in python ?

2008-03-14 Thread Pradeep Rai
Dear All, I am working on the python tools that process a huge amount of GIS data. These tools encountering the problem of memory leaks. Please suggest what are the different ways to detect the memory leaks in python ? This is very critical problem for me. Help needed urgently. Thanks

Urgent : How to do memory leaks detection in python ?

2008-03-14 Thread Pradeep Rai
Dear All, I am working on the python tools that process a huge amount of GIS data. These tools encountering the problem of memory leaks. Please suggest what are the different ways to detect the memory leaks in python ? This is very critical problem for me. Help needed urgently. Thanks

Urgent : How to do memory leaks detection in python ?

2008-03-14 Thread Pradeep Rai
Dear All, I am working on the python tools that process a huge amount of GIS data. These tools encountering the problem of memory leaks. Please suggest what are the different ways to detect the memory leaks in python ? This is very critical problem for me. Help needed urgently. Thanks

Re: Urgent : How to do memory leaks detection in python ?

2008-03-14 Thread Michael Wieher
2008/3/14, Pradeep Rai [EMAIL PROTECTED]: Dear All, I am working on the python tools that process a huge amount of GIS data. These tools encountering the problem of memory leaks. Please suggest what are the different ways to detect the memory leaks in python ? This is very critical

RE: Urgent : How to do memory leaks detection in python ?

2008-03-14 Thread Bronner, Gregory
helps. Create a simple example rather than trying to run it on your whole application. From: Michael Wieher [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2008 10:16 AM To: python-list@python.org Subject: Re: Urgent : How to do memory leaks detection