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.

classification
Title: Typo in class tkinter.filedialog.Directory prevents compilation
Type: compile error Stage:
Components: Tkinter Versions: Python 3.0
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, ringhome
Priority: normal Keywords:

Created on 2009-01-22 02:19 by ringhome, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg80355 - (view) Author: David Schultz (ringhome) Date: 2009-01-22 02:19
class tkinter.filedialog.Directory incorrectly derives from Dialog instead 
of _Dialog.  Adding the "_" allows the code to compile and run as 
expected.

This also explains why tkinter.filedialog.askdirectory() doesn't work.
msg80356 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-01-22 02:23
Duplicate of #4406.
History
Date User Action Args
2022-04-11 14:56:44adminsetgithub: 49280
2009-01-22 02:24:00benjamin.petersonsetstatus: open -> closed
resolution: out of date
messages: + msg80356
nosy: + benjamin.peterson
2009-01-22 02:19:15ringhomecreate