summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTerry Reedy <tjreedy@udel.edu>2010-11-23 06:44:05 (GMT)
committerTerry Reedy <tjreedy@udel.edu>2010-11-23 06:44:05 (GMT)
commit277896ad4ef90e87b4624190f7c8c38c994c92ee (patch)
tree2d0a9da368214f11e7cae7b18d8b4517121c7de3
parent55d935a145710c2609c234df47b1172b52c3dcd9 (diff)
downloadcpython-277896ad4ef90e87b4624190f7c8c38c994c92ee.zip
cpython-277896ad4ef90e87b4624190f7c8c38c994c92ee.tar.gz
cpython-277896ad4ef90e87b4624190f7c8c38c994c92ee.tar.bz2
Issue 9222 Fix filetypes for open dialog
Merged from 86702
-rw-r--r--Lib/idlelib/IOBinding.py4
1 files changed, 2 insertions, 2 deletions
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 @@ 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", "*"),
]