[issue4960] askdirectory from tkinter.filedialog does not work

2009-01-15 Thread Martin v. Löwis
Martin v. Löwis added the comment: Ah. That's a duplicate of issue 4406. -- resolution: -> duplicate status: open -> closed superseder: -> In Lib\tkinter\filedialog.py, class Directory define loss a"_" ___ Python tracker

[issue4960] askdirectory from tkinter.filedialog does not work

2009-01-15 Thread Martin Saturka
Martin Saturka added the comment: When I do in Python 2.x (e.g. 2.6) next: import Tkinter as T import tkFileDialog as F t = T.Tk() dn = F.askdirectory() It pop-ups the dialog, it is OK. Analogical case for Python 3.0 does not work, at le

[issue4960] askdirectory from tkinter.filedialog does not work

2009-01-15 Thread Martin v. Löwis
Martin v. Löwis added the comment: Please be more explicit: what does "not work" mean? What do you do, what happens, what do you expect to happen instead? -- nosy: +loewis ___ Python tracker ___

[issue4960] askdirectory from tkinter.filedialog does not work

2009-01-15 Thread Martin Saturka
New submission from Martin Saturka : Directory selection from Tkinter part of Python 3.0, i.e. "askdirectory" function from tkinter.filedialog does not work. It works for 2.x Python, other Tkinter functions (askopenfilename, asksaveasfilename) work well at both 2.x and 3.0 versions. -- c