[issue4406] In Lib\tkinter\filedialog.py, class Directory define loss a_

2008-12-31 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: I'm moving this to release blocker since it went unnoticed in the 3.0 release. -- priority: - release blocker ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4406

[issue4406] In Lib\tkinter\filedialog.py, class Directory define loss a_

2008-12-31 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: Fixed in r68103. -- nosy: +benjamin.peterson resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue4406

[issue4406] In Lib\tkinter\filedialog.py, class Directory define loss a_

2008-12-07 Thread lion.guo
lion.guo [EMAIL PROTECTED] added the comment: Why didn't include this patch in python 3.0 ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4406 ___ ___

[issue4406] In Lib\tkinter\filedialog.py, class Directory define loss a_

2008-11-24 Thread lion.guo
New submission from lion.guo [EMAIL PROTECTED]: In Lib\tkinter\filedialog.py, class Directory class Directory(Dialog): should be class Directory(_Dialog): -- components: Tests messages: 76312 nosy: lion.guo severity: normal status: open title: In Lib\tkinter\filedialog.py, class

[issue4406] In Lib\tkinter\filedialog.py, class Directory define loss a_

2008-11-24 Thread lion.guo
Changes by lion.guo [EMAIL PROTECTED]: -- components: +Library (Lib) -Tests type: - compile error ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4406 ___

[issue4406] In Lib\tkinter\filedialog.py, class Directory define loss a_

2008-11-24 Thread Guilherme Polo
Guilherme Polo [EMAIL PROTECTED] added the comment: Actually it should be commondialog.Dialog -- keywords: +patch nosy: +gpolo Added file: http://bugs.python.org/file12118/Directory_fix_subclass.diff ___ Python tracker [EMAIL PROTECTED]

[issue4406] In Lib\tkinter\filedialog.py, class Directory define loss a_

2008-11-24 Thread Guilherme Polo
Guilherme Polo [EMAIL PROTECTED] added the comment: It is important to commit this actually, since right now tkinter.filedialog.Directory is pretty broken but also very simple to fix. -- components: +Tkinter -Library (Lib) type: compile error - ___