Issue 9222 Fix filetypes for open dialog

Merged from 86702
This commit is contained in:
Terry Reedy 2010-11-23 06:44:05 +00:00
parent 55d935a145
commit 277896ad4e
1 changed files with 2 additions and 2 deletions

View File

@ -521,8 +521,8 @@ class IOBinding:
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", "*"),
]