Re: Python C Extensions

2011-02-24 Thread aken8...@yahoo.com
11:33 am, MRAB wrote: > On 24/02/2011 16:01, aken8...@yahoo.com wrote: > > > > > > > Hi, > > > I have a memory leak problem with my "C" extension module. My C module > > returns large dictionaries to python, and the dictionaries never get > > del

Python C Extensions

2011-02-24 Thread aken8...@yahoo.com
Hi, I have a memory leak problem with my "C" extension module. My C module returns large dictionaries to python, and the dictionaries never get deleted, so the memory for my program keeps growing. I do not know how to delete the dictionary object after it becomes irrelevant. I do not know if the