summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/untabify.py
Commit message (Collapse)AuthorAgeFilesLines
* Convert raise statements in Tools/.Collin Winter2007-08-221-1/+1
|
* Convert print statements to function calls in Tools/.Collin Winter2007-08-031-4/+4
|
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-2/+2
| | | | | | (a) "except E, V" -> "except E as V" (b) V is now limited to a simple name (local variable) (c) V is now deleted at the end of the except block
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-1/+1
| | | | From SF patch #852334.
* Fix use of 'file' as a variable name.Andrew M. Kuchling2003-05-131-9/+9
| | | | (I've tested the fixes, but please proofread anyway.)
* Apply diff2.txt from SF patch http://www.python.org/sf/572113Walter Dörwald2002-09-111-2/+1
| | | | | | | | (with one small bugfix in bgen/bgen/scantools.py) This replaces string module functions with string methods for the stuff in the Tools directory. Several uses of string.letters etc. are still remaining.
* Detlef Lannert lannert@lannert.rz.uni-duesseldorf.de notices:Guido van Rossum1998-10-201-1/+4
| | | | | | | | | """ the NEWS file of Python 1.5.2a2 inspired me to look at Tools/scripts/untabify.py. I wonder why it accepts a -t argument but ignores it. The following patch tries to make it somewhat useful (i.e., to override the tabsize=8 setting). Is that agreeable? """
* Utility to untabify stubber results.Guido van Rossum1998-09-141-0/+50