This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gpolo
Recipients ajaksu2, gpolo, loewis, reowen
Date 2009-03-31.20:54:22
SpamBayes Score 0.00021696556
Marked as misclassified No
Message-id <1238532864.36.0.749695988129.issue978604@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2009-03-31 20:54:24gpolosetrecipients: + gpolo, loewis, reowen, ajaksu2
2009-03-31 20:54:24gpolosetmessageid: <1238532864.36.0.749695988129.issue978604@psf.upfronthosting.co.za>
2009-03-31 20:54:22gpololinkissue978604 messages
2009-03-31 20:54:22gpolocreate