[Python-Dev] [Python-checkins] r86702 - python/branches/py3k/Lib/idlelib/IOBinding.py

Terry Reedy tjreedy at udel.edu
Tue Nov 23 07:13:44 CET 2010



On 11/23/2010 1:01 AM, terry.reedy wrote:
> Author: terry.reedy
> Date: Tue Nov 23 07:01:31 2010
> New Revision: 86702
>
> Log:
Issue 9222 Fix filetypes for open dialog

Sorry, forgot to add this before clicking [go] or whatever the button 
is. Is there any way to revise a revision ;-?

> Modified:
>     python/branches/py3k/Lib/idlelib/IOBinding.py
>
> Modified: python/branches/py3k/Lib/idlelib/IOBinding.py
> ==============================================================================
> --- python/branches/py3k/Lib/idlelib/IOBinding.py	(original)
> +++ python/branches/py3k/Lib/idlelib/IOBinding.py	Tue Nov 23 07:01:31 2010
> @@ -476,8 +476,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", "*"),
>           ]


More information about the Python-Dev mailing list