[Python-checkins] r86703 - python/branches/release31-maint/Lib/idlelib/IOBinding.py

terry.reedy python-checkins at python.org
Tue Nov 23 07:07:05 CET 2010


Author: terry.reedy
Date: Tue Nov 23 07:07:04 2010
New Revision: 86703

Log:
Issue 9222 Fix filetypes for open dialog

Modified:
   python/branches/release31-maint/Lib/idlelib/IOBinding.py

Modified: python/branches/release31-maint/Lib/idlelib/IOBinding.py
==============================================================================
--- python/branches/release31-maint/Lib/idlelib/IOBinding.py	(original)
+++ python/branches/release31-maint/Lib/idlelib/IOBinding.py	Tue Nov 23 07:07:04 2010
@@ -476,8 +476,8 @@
     savedialog = None
 
     filetypes = [
-        ("Python and text files", "*.py *.pyw *.txt", "TEXT"),
-        ("All text files", "*", "TEXT"),
+        ("Python files", "*.py *.pyw", "TEXT"),
+        ("Text files", "*.txt", "TEXT"),
         ("All files", "*"),
         ]
 


More information about the Python-checkins mailing list