[issue5030] Typo in class tkinter.filedialog.Directory prevents compilation

2009-01-21 Thread Benjamin Peterson
Benjamin Peterson added the comment: Duplicate of #4406. -- nosy: +benjamin.peterson resolution: -> out of date status: open -> closed ___ Python tracker ___ ___

[issue5030] Typo in class tkinter.filedialog.Directory prevents compilation

2009-01-21 Thread David Schultz
New submission from David Schultz : 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. -- components: Tkinter mess