[issue4832] IDLE does not supply a default ext of .py on Windows or OS X for new file saves

2014-10-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: Misdirected push message copied here. New changeset 69cdf71bda12 by Terry Jan Reedy in branch '2.7': Issue #3832: backport 677a9326b4d4 to 2.7 (and delete some obsolete code). https://hg.python.org/cpython/rev/69cdf71bda12 -- ___

[issue4832] IDLE does not supply a default ext of .py on Windows or OS X for new file saves

2014-10-06 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue4832] IDLE does not supply a default ext of .py on Windows or OS X for new file saves

2014-10-06 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thank you. It was in particular the switching between a -> a.py and a -> a.txt that I described and wanted verified for linux. The fact that names with extensions are left unchanged is important too. I will have to think about how to describe this succinctly

[issue4832] IDLE does not supply a default ext of .py on Windows or OS X for new file saves

2014-10-06 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: I will try to describe the behavior on linux: (Format used is "what i type in file name" -> "name which gets written to disk") 1. When files of type is: Python Files a -> a.py b.py -> b.py c.py.py -> c.py.py d.py.abc -> d.py.abc (!) e.abc ->

[issue4832] IDLE does not supply a default ext of .py on Windows or OS X for new file saves

2014-10-05 Thread Terry J. Reedy
Terry J. Reedy added the comment: Better late than never. At least on Windows, with has defaultextension = '', changeing "Save as type" to "Text files" changes the default to ".txt". I presume that this bonus feature is not available on OSX, where defaultextension = '.py'. Before I update t

[issue4832] IDLE does not supply a default ext of .py on Windows or OS X for new file saves

2014-02-04 Thread Tal Einat
Changes by Tal Einat : -- nosy: -taleinat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue4832] IDLE does not supply a default ext of .py on Windows or OS X for new file saves

2013-09-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: With PEP 434, this can and I think should be backported. I should have done it for 2.7.5 and will try to do soon. -- ___ Python tracker ___

[issue4832] IDLE does not supply a default ext of .py on Windows or OS X for new file saves

2012-07-13 Thread Ned Deily
Ned Deily added the comment: Committed for 3.3. I'm +0.5 for 2.7 and 3.2. It seems like a bug to me. Terry, I'll leave it up to you to handle that and any further doc updates you want to make. -- title: idle filename extension -> IDLE does not supply a default ext of .py on Window