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

2010-11-22 Thread Terry Reedy



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, *),
  ]

___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


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

2010-11-22 Thread Georg Brandl
Am 23.11.2010 07:13, schrieb Terry Reedy:
 
 
 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 ;-?

Yes, with SVN there is.  I don't know if you can do it with whatever
GUI tool you use, but the command is the following:

svn propedit --revprop -r 86702 svn:log

In a short time however, after switching to Mercurial, commits will be
truly immutable.  However, since the equivalent to committing in SVN is
a two-step process (commit locally and then push one or more commits to
the public repo on the server), you can review your commits locally
before pushing them, and fix mistakes by rewriting history (you can
see from that description that it won't work when the changes are already
public).

Georg

___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


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

2010-11-22 Thread Terry Reedy

On 11/23/2010 1:44 AM, Georg Brandl wrote:

Am 23.11.2010 07:13, schrieb Terry Reedy:



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 ;-?


Yes, with SVN there is.  I don't know if you can do it with whatever
GUI tool you use, but the command is the following:

svn propedit --revprop -r 86702 svn:log

(followed by new message?)

OK, done. TortoiseSVN has a nice revision log dialog. Right click and 
one of the choices is 'edit log message'. Easy. I see that there is a 
TortoiseHg as well.


--
Terry Jan Reedy

___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com