-
I should mention that I only have tested running 32-bit Python on 64-bit Windows 7.
2013-04-17 16:54:52 PDT in Python for Window...
-
Importing win32ui in a simple .py program causes a hang on exit with pywin32-218.
This hang occurs under Python 2.6.7, 2.7.4, and 3.1.4. It does not occur under 3.2.4 and 3.3.1. I currently only test using 32-bit Python.
The last-known good pywin32 version on Py2.6 was pywin32-212. Some regression was introduced in pywin32-213 and has existed since then (still in pywin32-218), causing this...
2013-04-17 16:49:20 PDT in Python for Window...
-
I see a similar (and I'm sure related) problem. The following Python code snippet causes a hang on exit:
#################################
import Tkinter
import win32ui #including this library causes hang on exit
master = Tkinter.Tk()
#Label not needed to reproduce hang
Tkinter.Label(text=" Will hang on exit if win32ui has been imported ").pack()
master.mainloop(...
2013-01-05 09:47:08 PST in Python for Window...