summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/IOBinding.py
diff options
context:
space:
mode:
authorTerry Reedy <tjreedy@udel.edu>2010-11-23 06:01:31 (GMT)
committerTerry Reedy <tjreedy@udel.edu>2010-11-23 06:01:31 (GMT)
commit5e438570cb8d7b64d71f1cb356df12edfec09dfe (patch)
treedf8498f2a02aaa01cbe4a0dc2843d86bf61b5ca6 /Lib/idlelib/IOBinding.py
parente61602fc84ba55186dc81f3bdf3f9f78de9926eb (diff)
downloadcpython-5e438570cb8d7b64d71f1cb356df12edfec09dfe.zip
cpython-5e438570cb8d7b64d71f1cb356df12edfec09dfe.tar.gz
cpython-5e438570cb8d7b64d71f1cb356df12edfec09dfe.tar.bz2
Issue 9222 Fix filetypes for open dialog
Diffstat (limited to 'Lib/idlelib/IOBinding.py')
-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 1b7bfc1..381bb00 100644
--- a/Lib/idlelib/IOBinding.py
+++ b/Lib/idlelib/IOBinding.py
@@ -476,8 +476,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", "*"),
]