commit | 5e438570cb8d7b64d71f1cb356df12edfec09dfe | [log] [tgz] |
---|---|---|
author | Terry Reedy <tjreedy@udel.edu> | Tue Nov 23 06:01:31 2010 +0000 |
committer | Terry Reedy <tjreedy@udel.edu> | Tue Nov 23 06:01:31 2010 +0000 |
tree | df8498f2a02aaa01cbe4a0dc2843d86bf61b5ca6 | |
parent | e61602fc84ba55186dc81f3bdf3f9f78de9926eb [diff] [blame] |
Issue 9222 Fix filetypes for open dialog
diff --git a/Lib/idlelib/IOBinding.py b/Lib/idlelib/IOBinding.py index 1b7bfc1..381bb00 100644 --- a/Lib/idlelib/IOBinding.py +++ b/Lib/idlelib/IOBinding.py
@@ -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", "*"), ]