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 aivarannamaa
Recipients aivarannamaa
Date 2018-10-08.07:33:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1538984014.88.0.545547206417.issue34927@psf.upfronthosting.co.za>
In-reply-to
Content
Here is a simple application that also exposes this problem. Click at the button and press Escape when dialog appears.

import tkinter as tk
import tkinter.filedialog as fd
 
root = tk.Tk()
 
def dostuff():
    fd.askopenfile()
 
bt = tk.Button(root, text="Click me!", command=dostuff)
bt.grid()
 
root.mainloop()
History
Date User Action Args
2018-10-08 07:33:34aivarannamaasetrecipients: + aivarannamaa
2018-10-08 07:33:34aivarannamaasetmessageid: <1538984014.88.0.545547206417.issue34927@psf.upfronthosting.co.za>
2018-10-08 07:33:34aivarannamaalinkissue34927 messages
2018-10-08 07:33:34aivarannamaacreate