projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e61602f
)
Issue 9222 Fix filetypes for open dialog
author
Terry Reedy
<tjreedy@udel.edu>
Tue, 23 Nov 2010 06:01:31 +0000
(06:01 +0000)
committer
Terry Reedy
<tjreedy@udel.edu>
Tue, 23 Nov 2010 06:01:31 +0000
(06:01 +0000)
Lib/idlelib/IOBinding.py
patch
|
blob
|
history
diff --git
a/Lib/idlelib/IOBinding.py
b/Lib/idlelib/IOBinding.py
index 1b7bfc1da9c418fc31e1f17e6e8b32a986180909..381bb00cc069700369e8ffc5492d565cefe27d9f 100644
(file)
--- 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", "*"),
]