[issue978604] wait_variable hangs at exit
Guilherme Polo
report at bugs.python.org
Tue Mar 31 22:54:24 CEST 2009
Guilherme Polo <ggpolo at gmail.com> added the comment:
You can also reproduce it with a shorter test that doesn't need any
interaction:
import Tkinter
root = Tkinter.Tk()
waitvar = Tkinter.BooleanVar()
root.after(50, lambda: waitvar.set(True))
root.after(10, root.destroy)
root.wait_variable(waitvar)
root.mainloop()
Verifying.
----------
nosy: +gpolo
versions: +Python 2.7, Python 3.1
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue978604>
_______________________________________
More information about the Python-bugs-list
mailing list