commit | 277896ad4ef90e87b4624190f7c8c38c994c92ee | [log] [tgz] |
---|---|---|
author | Terry Reedy <tjreedy@udel.edu> | Tue Nov 23 06:44:05 2010 +0000 |
committer | Terry Reedy <tjreedy@udel.edu> | Tue Nov 23 06:44:05 2010 +0000 |
tree | 2d0a9da368214f11e7cae7b18d8b4517121c7de3 | |
parent | 55d935a145710c2609c234df47b1172b52c3dcd9 [diff] [blame] |
Issue 9222 Fix filetypes for open dialog Merged from 86702
diff --git a/Lib/idlelib/IOBinding.py b/Lib/idlelib/IOBinding.py index cbc1c33..a5b610e 100644 --- a/Lib/idlelib/IOBinding.py +++ b/Lib/idlelib/IOBinding.py
@@ -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", "*"), ]