[Python-checkins] r86704 - python/branches/release27-maint/Lib/idlelib/IOBinding.py

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


Author: terry.reedy
Date: Tue Nov 23 07:44:05 2010
New Revision: 86704

Log:
Issue 9222 Fix filetypes for open dialog
Merged from 86702


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

Modified: python/branches/release27-maint/Lib/idlelib/IOBinding.py
==============================================================================
--- python/branches/release27-maint/Lib/idlelib/IOBinding.py	(original)
+++ python/branches/release27-maint/Lib/idlelib/IOBinding.py	Tue Nov 23 07:44:05 2010
@@ -521,8 +521,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