On 11/23/2010 1:01 AM, terry.reedy wrote:
Author: terry.reedy
Date: Tue Nov 23 07:01:31 2010
New Revision: 86702

Log:
Issue 9222 Fix filetypes for open dialog

Sorry, forgot to add this before clicking [go] or whatever the button is. Is there any way to revise a revision ;-?

Modified:
    python/branches/py3k/Lib/idlelib/IOBinding.py

Modified: python/branches/py3k/Lib/idlelib/IOBinding.py
==============================================================================
--- python/branches/py3k/Lib/idlelib/IOBinding.py       (original)
+++ python/branches/py3k/Lib/idlelib/IOBinding.py       Tue Nov 23 07:01:31 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", "*"),
          ]
_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to