python com server clean up problem

2005-11-28 Thread Raul Cota
I hope somebody here can help me out here. I have a Python COM server which I call from Excel. The Python object is a bit complex and its __del__ method is not called when the reference count to the object from within Excel go to 0. For this reason I have a CleanUp method that makes sure all th

Re: python com server clean up problem

2005-11-28 Thread Trent Mick
[Raul Cota wrote] > I hope somebody here can help me out here. > > I have a Python COM server which I call from Excel. The Python object is a > bit complex and its __del__ method is not called when the reference count > to the object from within Excel go to 0. For this reason I have a CleanUp >

Re: python com server clean up problem

2005-11-28 Thread Raul Cota
Trent Mick wrote: [Raul Cota wrote] I hope somebody here can help me out here. I have a Python COM server which I call from Excel. The Python object is a bit complex and its __del__ method is not called when the reference count to the object from within Excel go to 0. For this reason I have