[python-win32] PythonWin and calling functions across threads

2004-12-29 Thread Steven Bethard
I posted this originally to the python-list[1], but then discovered that my problem only occurs in PythonWin. Any help would be appreciated: [1] http://mail.python.org/pipermail/python-list/2004-December/257666.html Original Message Subject: calling functions across threads Date

RE: [python-win32] PythonWin and calling functions across threads

2004-12-29 Thread Mark Hammond
Internally, Pythonwin uses a queue for all sys.stdout writing, to ensure the actual window update only ever happens on the main thread (which is a requirement of Windows). To get a "smooth" effect, Pythonwin queues output until a newline is seen. This is probably the reason. To change this behavi