[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-11-22 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: 3.2, 3.1, 2.7: r86702, r86703, r86704 -- resolution: - fixed stage: commit review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-20 Thread Tal Einat
Tal Einat talei...@gmail.com added the comment: On Windows, I can't think of any common reason to want to save a file edited in IDLE without the .py extension. On the other hand, accidentally forgetting the .py extension is annoying, and users have come to expect a default extension being

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-20 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: Tal, I agree with your comment, but I believe it applies to #4832 and should be moved there. The patch here fixes (and only fixes) an obvious bug in the filetypes list. -- ___ Python tracker

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-20 Thread Tal Einat
Tal Einat talei...@gmail.com added the comment: You're right Terry, my bad, I got the issues mixed up. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9222 ___

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-16 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: gp, do you see any reason not to commit this? If not, could you do so? -- nosy: +gpolo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9222

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-16 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: I remember about another issue regarding extensions and save-as/open dialog boxes. Let me try to find it, just to be sure that the problem described here is different. -- ___ Python tracker

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-16 Thread Guilherme Polo
Guilherme Polo ggp...@gmail.com added the comment: I was thinking of issue4832. The patch provided here seems fine to me, although the behavior remains the same in Mac. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9222

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-12 Thread Eli Bendersky
Eli Bendersky eli...@gmail.com added the comment: Attaching a patch file for Lib/idlelib/IOBinding.py, diffed against the latest SVN trunk. -- keywords: +patch nosy: +eli.bendersky Added file: http://bugs.python.org/file17968/issue9122.1.patch ___

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-12 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- stage: - commit review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9222 ___ ___ Python-bugs-list

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-12 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- nosy: +kbk ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9222 ___ ___ Python-bugs-list mailing list

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-11 Thread Marco Donato Torsello
Marco Donato Torsello md1...@gmail.com added the comment: My fix for IDLE of Python3.1 . This is the first time for me, so I didn't know what i have to do , sorry -- nosy: +md1512 Added file: http://bugs.python.org/file17946/IOBinding.py ___ Python

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-11 Thread Terry J. Reedy
Terry J. Reedy tjre...@udel.edu added the comment: The upload still needed is a .diff patch file. This is most easily done with a VCS, in particular svn or possibly hg. I have asked someone with the proper setup to make one. -- ___ Python tracker

[issue9222] IDLE: Fix open/saveas 'Files of type' choices

2010-07-10 Thread Terry J. Reedy
New submission from Terry J. Reedy tjre...@udel.edu: In the open and save-as dialog boxes, the choices for the 'Files of type' field are governed by the filetypes list in Lib\idlelib\IOBinding.py, about line 225 (found by a friend). filetypes = [ (Python and text files, *.py *.pyw