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 amaury.forgeotdarc, belopolsky, roger.serwy, terry.reedy, william.barr
Date 2011-12-14.19:13:22
SpamBayes Score 3.5943125e-07
Marked as misclassified No
Message-id <1323890003.4.0.558230174065.issue10365@psf.upfronthosting.co.za>
In-reply-to
Content
William's explanation in msg123203 for the cause of the error and the solution for keeping a reference to "flist" is good. IDLE has only one instance of FileList while running anyways.

Attached is a patch that behaves like William's description.

The modification to PyShell.py is necessary for a corner-case. If the last IDLE window is closed with the Open File dialog still open, then FileList.py and WindowList.py both call .quit(). Without the modification, IDLE closes after selecting a file since root.mainloop() returns and root.destroy() gets executed. 

The alternative (and simpler) method is to have the Open File dialog be modal, but AFAIK it can't be set to modal.
History
Date User Action Args
2011-12-14 19:13:23roger.serwysetrecipients: + roger.serwy, terry.reedy, amaury.forgeotdarc, belopolsky, william.barr
2011-12-14 19:13:23roger.serwysetmessageid: <1323890003.4.0.558230174065.issue10365@psf.upfronthosting.co.za>
2011-12-14 19:13:22roger.serwylinkissue10365 messages
2011-12-14 19:13:22roger.serwycreate