[issue23128] Key presses are doubled in Tkinter dialog invoked from window close handler (OS X only)
Philipp Emanuel Weidmann added the comment: I upgraded to Python 2.7.9 and ActiveTcl 8.5.17.0 as suggested. I confirmed that this is the Tk version actually used by looking at Python's About dialog. The problem persists. -- ___ Python tr
[issue23128] Key presses are doubled in Tkinter dialog invoked from window close handler (OS X only)
New submission from Philipp Emanuel Weidmann: Minimal code example: from Tkinter import Tk from tkSimpleDialog import askstring def close_handler(): askstring('', '') root.destroy() root = Tk() root.protocol('WM_DELETE_WINDOW', close_handler) root.mainlo