summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/fixdiv.py
Commit message (Collapse)AuthorAgeFilesLines
* Ran 2to3 over scripts directory.Georg Brandl2008-05-161-1/+1
|
* Convert print statements to function calls in Tools/.Collin Winter2007-08-031-24/+24
|
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-3/+3
| | | | | | (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
* Patch #1601678: move intern() to sys.intern().Georg Brandl2006-12-191-1/+1
|
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-1/+1
|
* Fix a bunch of typos in documentation, docstrings and comments.Walter Dörwald2003-10-201-1/+1
| | | | (From SF patch #810751)
* Fix use of 'file' as a variable name.Andrew M. Kuchling2003-05-131-8/+8
| | | | (I've tested the fixes, but please proofread anyway.)
* - Reverse the meaning of the -m option: warnings about multiple /Guido van Rossum2001-09-041-35/+85
| | | | | | | | | | | | | | operators per line or statement are now on by default, and -m turns these warnings off. - Change the way multiple / operators are reported; a regular recommendation is always emitted after the warning. - Report ambiguous warnings (both int|long and float|complex used for the same operator). - Update the doc string again to clarify all this and describe the possible messages more precisely.
* Whitespace normalization.Tim Peters2001-09-041-4/+4
|
* PEP 238 documented -Qwarn as warning only for classic int or longGuido van Rossum2001-09-041-1/+1
| | | | | division, and this makes sense. Add -Qwarnall to warn for all classic divisions, as required by the fixdiv.py tool.
* Rename the -D option to -Q, to avoid a Jython option name conflict.Guido van Rossum2001-09-041-1/+1
|
* Implement what the docstring said: multiple slashes per line areGuido van Rossum2001-09-021-15/+26
| | | | | treated the same as single ones by default. Added -m option to issue a warning for this case instead.
* Added more text to the docstring, updated the way the exit status isGuido van Rossum2001-09-021-31/+113
| | | | | | | percolated out, and some general cleanup. The output is still the same, except it now prints "Index: <file>" instead of "Processing: <file>", so that the output can be used as input for patch (but only the diff-style parts of it).
* The beginnings of a script to help finding / operators that may needGuido van Rossum2001-09-011-0/+237
to be change to //. The code is pretty gross so far, and I promise I'll work on this more, but I have to go eat now! :-)