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 roger.serwy
Recipients BreamoreBoy, asvetlov, ceball, dickmadden, gpolo, kbk, loewis, mdehoon, noamr, python-dev, roger.serwy
Date 2012-03-26.18:42:28
SpamBayes Score 8.198919e-05
Marked as misclassified No
Message-id <1332787349.6.0.72910167427.issue989712@psf.upfronthosting.co.za>
In-reply-to
Content
There's a subtle bug in the currently applied patch.

    import tkinter
    a = tkinter.Tk()
    b = tkinter.Tk()

Closing the first window will prevent closing the second window. This example may seem abstract, but it is a real issue especially when using matplotlib with multiple figures.

Attached is a patch that incorporates what IdleX uses for driving the Tk/Tcl event loop.
History
Date User Action Args
2012-03-26 18:42:29roger.serwysetrecipients: + roger.serwy, loewis, kbk, mdehoon, noamr, dickmadden, ceball, gpolo, asvetlov, BreamoreBoy, python-dev
2012-03-26 18:42:29roger.serwysetmessageid: <1332787349.6.0.72910167427.issue989712@psf.upfronthosting.co.za>
2012-03-26 18:42:29roger.serwylinkissue989712 messages
2012-03-26 18:42:28roger.serwycreate