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 ned.deily
Recipients ned.deily, rdnielsen
Date 2020-01-17.19:10:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1579288234.35.0.401950584185.issue39370@roundup.psfhosted.org>
In-reply-to
Content
In Python 2, askopenfilename was in the separate tkFileDialog module:

>>> import tkFileDialog
>>> dir(tkFileDialog.askopenfilename)
['__call__',  ...

https://docs.python.org/2/library/tkinter.html?highlight=tkfiledialog#tkinter-modules

"Other modules that provide Tk support include:
[...]
tkFileDialog
Common dialogs to allow the user to specify a file to open or save.
[...]
These have been renamed as well in Python 3; they were all made submodules of the new tkinter package."
History
Date User Action Args
2020-01-17 19:10:34ned.deilysetrecipients: + ned.deily, rdnielsen
2020-01-17 19:10:34ned.deilysetmessageid: <1579288234.35.0.401950584185.issue39370@roundup.psfhosted.org>
2020-01-17 19:10:34ned.deilylinkissue39370 messages
2020-01-17 19:10:33ned.deilycreate