Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-22831: Use "with" to avoid possible fd leaks in tools (part 1). (GH-10926) | Serhiy Storchaka | 2019-03-30 | 1 | -93/+93 |
| | |||||
* | #27364: fix "incorrect" uses of escape character in the stdlib. | R David Murray | 2016-09-08 | 1 | -2/+2 |
| | | | | | | | And most of the tools. Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and Martin Panter. | ||||
* | Issue #25505: Remove unused buggy method. | Terry Jan Reedy | 2015-10-30 | 1 | -2/+0 |
| | |||||
* | convert shebang lines: python -> python3 | Benjamin Peterson | 2010-03-11 | 1 | -1/+1 |
| | |||||
* | Ran 2to3 over scripts directory. | Georg Brandl | 2008-05-16 | 1 | -1/+1 |
| | |||||
* | Convert print statements to function calls in Tools/. | Collin Winter | 2007-08-03 | 1 | -24/+24 |
| | |||||
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -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 Brandl | 2006-12-19 | 1 | -1/+1 |
| | |||||
* | Patch #1550800: make exec a function. | Georg Brandl | 2006-09-06 | 1 | -1/+1 |
| | |||||
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 1 | -1/+1 |
| | | | | (From SF patch #810751) | ||||
* | Fix use of 'file' as a variable name. | Andrew M. Kuchling | 2003-05-13 | 1 | -8/+8 |
| | | | | (I've tested the fixes, but please proofread anyway.) | ||||
* | - Reverse the meaning of the -m option: warnings about multiple / | Guido van Rossum | 2001-09-04 | 1 | -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 Peters | 2001-09-04 | 1 | -4/+4 |
| | |||||
* | PEP 238 documented -Qwarn as warning only for classic int or long | Guido van Rossum | 2001-09-04 | 1 | -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 Rossum | 2001-09-04 | 1 | -1/+1 |
| | |||||
* | Implement what the docstring said: multiple slashes per line are | Guido van Rossum | 2001-09-02 | 1 | -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 is | Guido van Rossum | 2001-09-02 | 1 | -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 need | Guido van Rossum | 2001-09-01 | 1 | -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! :-) |