Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Quote docstring with r"" to keep '\r\n' in example code. | Hye-Shik Chang | 2005-09-07 | 1 | -1/+1 |
| | |||||
* | note that the return and yield statements cannot be used at the top level in | Fred Drake | 2005-09-07 | 1 | -1/+6 |
| | | | | | exec statements; people coming from certain other languages seem to be confused by this on a regular basis | ||||
* | - fix typo report by email, only 1.5 years late | Fred Drake | 2005-09-07 | 1 | -7/+7 |
| | | | | - fix several consistency nits relating to \method{...()} | ||||
* | break sets a breakpoint rather than stopping the loop. | Neal Norwitz | 2005-09-05 | 1 | -2/+3 |
| | | | | | | | It *appears* a flag is necessary instead. This was tested in gdb 6.0. Backport candidate | ||||
* | Clarify what is meant with "whole numbers". | Georg Brandl | 2005-09-04 | 1 | -1/+2 |
| | |||||
* | bug [ 1274069 ] bz2module.c compiler warning | Georg Brandl | 2005-09-03 | 1 | -5/+12 |
| | |||||
* | - Correct PyBool_FromLong's return type and its description. | Georg Brandl | 2005-09-03 | 1 | -251/+251 |
| | | | | - Unify function description mode ("Return X" vs "Returns X") | ||||
* | Changed _srcfile determination to support py2exe. | Vinay Sajip | 2005-09-02 | 1 | -1/+3 |
| | |||||
* | Remove statement about meaning of constants; arguably it's incorrect | Andrew M. Kuchling | 2005-09-01 | 1 | -2/+1 |
| | |||||
* | Fix rest markup and typos. | Walter Dörwald | 2005-09-01 | 1 | -2/+2 |
| | |||||
* | SF bug #1235646: codecs.StreamRecoder.next() now reencodes the data it reads | Walter Dörwald | 2005-09-01 | 2 | -1/+6 |
| | | | | | from the input stream, so that the output is a byte string in the correct encoding instead of a unicode string. | ||||
* | Reverting previous checkin. This breaks too much of HTMLParser to be applied | Georg Brandl | 2005-09-01 | 1 | -1/+1 |
| | | | | | without thought. Anyway, such malformed HTML is better handled by something like BeautifulSoup. | ||||
* | No need to import exceptions, they are builtins | Neal Norwitz | 2005-09-01 | 3 | -7/+4 |
| | |||||
* | Remove unused import | Neal Norwitz | 2005-09-01 | 1 | -1/+0 |
| | |||||
* | Fix bug in last checkin (2.231). To match previous behavior, unicode | Neil Schemenauer | 2005-08-31 | 1 | -0/+5 |
| | | | | | subclasses should be substituted as-is and not have tp_str called on them. | ||||
* | patch [ 1242454 ] shutil.copytree() quits too soon after an error. | Georg Brandl | 2005-08-31 | 1 | -0/+4 |
| | |||||
* | Whitespace normalization. | Georg Brandl | 2005-08-31 | 1 | -7/+7 |
| | |||||
* | bug [ 761452 ] HTMLParser chokes on my.yahoo.com output | Georg Brandl | 2005-08-31 | 1 | -1/+1 |
| | |||||
* | Typo fix | Andrew M. Kuchling | 2005-08-31 | 1 | -1/+1 |
| | |||||
* | From c.l.py comments: link to zlib manual, and disclaim completeness | Andrew M. Kuchling | 2005-08-31 | 1 | -2/+9 |
| | |||||
* | Update URLs | Andrew M. Kuchling | 2005-08-31 | 2 | -15/+21 |
| | |||||
* | Explain what file descriptors are; this change has been sitting in my tree ↵ | Andrew M. Kuchling | 2005-08-31 | 1 | -2/+9 |
| | | | | for a while | ||||
* | SF bug #1277016: Turn sentence fragment into a complete sentence. | Walter Dörwald | 2005-08-31 | 1 | -3/+3 |
| | |||||
* | updated __version__ | Piers Lauder | 2005-08-31 | 1 | -1/+1 |
| | |||||
* | changed select() so readonly flag is treated as a boolean | Piers Lauder | 2005-08-31 | 1 | -4/+4 |
| | |||||
* | SF bug #1251300: On UCS-4 builds the "unicode-internal" codec will now complain | Walter Dörwald | 2005-08-30 | 6 | -5/+173 |
| | | | | | about illegal code points. The codec now supports PEP 293 style error handlers. (This is a variant of the Nik Haldimann's patch that detects truncated data) | ||||
* | SF #1275796, fix distutils typo "sortcut" -> "shortcut" | Neal Norwitz | 2005-08-30 | 1 | -1/+1 |
| | |||||
* | Add to-do list | Andrew M. Kuchling | 2005-08-30 | 1 | -0/+13 |
| | |||||
* | Remove rexec howto; it's kind of pointless now | Andrew M. Kuchling | 2005-08-30 | 1 | -61/+0 |
| | |||||
* | Commit the howto source to the main Python repository, with Fred's approval | Andrew M. Kuchling | 2005-08-30 | 9 | -0/+4340 |
| | |||||
* | Fix logic error introduced in last commit. Also add a comment to explain what | Brett Cannon | 2005-08-29 | 1 | -2/+5 |
| | | | | the code is doing. | ||||
* | Add missing \end, noted by George Yoshida | Andrew M. Kuchling | 2005-08-29 | 1 | -0/+1 |
| | |||||
* | fix bug where str.find() was being misused where __contains__ should have been | Brett Cannon | 2005-08-27 | 1 | -1/+1 |
| | | | | used. | ||||
* | Write section on PEP 342 | Andrew M. Kuchling | 2005-08-27 | 1 | -10/+112 |
| | |||||
* | patch [ 1274550 ] libtarfile.tex: external URL changed | Georg Brandl | 2005-08-27 | 1 | -2/+2 |
| | |||||
* | patch [ 1274630 ] documentation fixes | Georg Brandl | 2005-08-27 | 3 | -7/+10 |
| | |||||
* | patch [ 1274630 ] documentation fixes | Georg Brandl | 2005-08-27 | 1 | -1/+1 |
| | |||||
* | Patch #1168594: set sizes of non-regular files to zero. Fixes #1167128. | Martin v. Löwis | 2005-08-27 | 3 | -14/+49 |
| | | | | Will backport to 2.4. | ||||
* | Whitespace normalization (via reindent.py). | Tim Peters | 2005-08-26 | 10 | -23/+19 |
| | |||||
* | testSeekBackwardsFromEnd(): Repair obvious syntax error. | Tim Peters | 2005-08-26 | 1 | -1/+1 |
| | |||||
* | Add list() around xreadlines() | Georg Brandl | 2005-08-26 | 1 | -2/+2 |
| | |||||
* | *** empty log message *** | Georg Brandl | 2005-08-26 | 1 | -11/+11 |
| | |||||
* | __new__ is a static method | Georg Brandl | 2005-08-26 | 1 | -1/+1 |
| | |||||
* | patch [ 810023 ] Fix for off-by-one bug in urllib.URLopener.retrieve | Georg Brandl | 2005-08-26 | 3 | -17/+102 |
| | |||||
* | SF bug #1072182: bad arg type to isspace in struct module | Raymond Hettinger | 2005-08-26 | 1 | -3/+3 |
| | |||||
* | patch [ 756021 ] Allow socket.inet_aton("255.255.255.255") on Windows | Georg Brandl | 2005-08-26 | 3 | -9/+19 |
| | |||||
* | typo | Georg Brandl | 2005-08-26 | 1 | -1/+1 |
| | |||||
* | Disallow keyword arguments for type constructors that don't use them. | Georg Brandl | 2005-08-26 | 13 | -13/+100 |
| | | | | (fixes bug #1119418) | ||||
* | bug [ 1248199 ] shelve .sync operation not documented | Georg Brandl | 2005-08-25 | 1 | -0/+8 |
| | |||||
* | bug [ 1262320 ] minidom.py alternate newl support is broken | Georg Brandl | 2005-08-25 | 1 | -4/+11 |
| |