interaction between import/threads/COM - yikes

2002-02-10 Thread Rusty
I have a module which runs COM calls asynchronously in helper threads, but after migrating to a WinXP machine, it has a strange interaction with import. If the code is run in the dynamic context of an import, all COM access just hangs. I've tried three cases: 1. a.py imports b.py, and *d

Re: [Tutor] Questions about threads

2001-08-28 Thread Ignacio Vazquez-Abrams
On Tue, 28 Aug 2001, A wrote: > Hi, > Can anybody please answer my questions? > > 1. In my application I need one function to run in threads. The > number of threads is chosen by user and numbers of threads can > not be higher at one time. > This function writes to a file a

Questions about threads

2001-08-28 Thread A
Hi, Can anybody please answer my questions? 1. In my application I need one function to run in threads. The number of threads is chosen by user and numbers of threads can not be higher at one time. This function writes to a file also.How can I prevent other threads from writting to this

Re: [Tutor] Threads

2001-08-13 Thread Rob Andrews
A wrote: > > Hi, > > I am a newbie with Python.I want to use threads in my application. > Can you please let me know what is the best way of programming > threads under Win32 systems? > What modules shall I use? > Is it better to use the thread module or the threading m

Threads

2001-08-13 Thread A
Hi, I am a newbie with Python.I want to use threads in my application. Can you please let me know what is the best way of programming threads under Win32 systems? What modules shall I use? Is it better to use the thread module or the threading module or the stackless Python? What are