Python threading

2007-03-08 Thread test . 07
I am wondering what happens to a thread in python in relation to win32com extensions. If I create a new thread, that uses the Dispatch method from win32com, what happens to the memory allocated in that thread when the thread is done. Will the Dispatch release the memory it created, or will the

Re: Python threading

2007-03-08 Thread test . 07
On Mar 8, 6:15 pm, Gabriel Genellina [EMAIL PROTECTED] wrote: En Thu, 08 Mar 2007 14:25:02 -0300, [EMAIL PROTECTED] escribió: All threads share the same memory space, there is not a per-thread memory allocator, if that's what you are thinking. Perhaps you hold a reference to some objects in