Re: Windows, CreateThread

2009-09-07 Thread Gary Herron
Torsten Mohr wrote: Hi, in a python C module i may need to create a Thread to do some background observations / calculations. Are there any problems with Python doing something like this? Is there some special support on sharing data? I guess i can't call any Python functions from the threa

Windows, CreateThread

2009-09-07 Thread Torsten Mohr
Hi, in a python C module i may need to create a Thread to do some background observations / calculations. Are there any problems with Python doing something like this? Is there some special support on sharing data? I guess i can't call any Python functions from the thread, correct? Thanks fo