Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #1227966: Do not defined _XOPEN_SOURCE_EXTENDED on Solaris 10. | Martin v. Löwis | 2005-11-26 | 2 | -6/+25 |
| | | | | Also set _XOPEN_SOURCE to 500. | ||||
* | Backport checkin: | Walter Dörwald | 2005-11-25 | 2 | -3/+4 |
| | | | | | SF patch #1364946: Add a reference link from the dcoumentation of the encode and decode methods to the documentation of the default error handlers. | ||||
* | Backport checkin: | Walter Dörwald | 2005-11-25 | 1 | -2/+12 |
| | | | | | | SF patch #1364545: test_cmd_line.py relied on english error messages when invoking the Python interpreter (which didn't work on non-english Windows versions). Check return codes instead. | ||||
* | bug #1281408: make Py_BuildValue work with unsigned longs and long longs | Georg Brandl | 2005-11-24 | 3 | -5/+47 |
| | |||||
* | Backport of patch #1314396: prevent threading.Thread.join() from blocking if a | Brett Cannon | 2005-11-23 | 2 | -16/+22 |
| | | | | previous call raised an exception (e.g., calling it with an illegal argument). | ||||
* | Bug #1357604: os.makedirs handles UNC paths | Georg Brandl | 2005-11-22 | 1 | -3/+2 |
| | |||||
* | added example for the ** operator in function calls | Georg Brandl | 2005-11-22 | 1 | -0/+14 |
| | |||||
* | Patch #1255218: libmultifile.tex: tell what a decoration is | Georg Brandl | 2005-11-22 | 1 | -3/+3 |
| | |||||
* | Bug #869197: setgroups rejects long integer argument | Georg Brandl | 2005-11-22 | 2 | -6/+33 |
| | |||||
* | Bug #1359035: Doc: Uxxxxxxxx escapes are interpreted in raw unicode literals. | Georg Brandl | 2005-11-22 | 1 | -2/+3 |
| | |||||
* | Add a note to os.chown that permission constants can be combined | Georg Brandl | 2005-11-22 | 1 | -1/+2 |
| | |||||
* | [Patch #1094164] replaceChild(x,x) ends up removing x from the tree. Add ↵ | Andrew M. Kuchling | 2005-11-22 | 2 | -2/+13 |
| | | | | fix from Felix Rabe and a test case | ||||
* | [Patch #1350573] zlib.crc32 doesn't handle 0xffffffff seed. Add tests and ↵ | Andrew M. Kuchling | 2005-11-22 | 2 | -2/+4 |
| | | | | bugfix. Bug reported by John Schmidt; bugfix by Danny Yoo. | ||||
* | [Bug #449093] FloorDiv AST node type not listed | Andrew M. Kuchling | 2005-11-22 | 1 | -0/+4 |
| | |||||
* | Backport r41489: | Walter Dörwald | 2005-11-21 | 1 | -1/+1 |
| | | | | Fix typo. | ||||
* | Backport one of the ref/memory leaks | Neal Norwitz | 2005-11-21 | 1 | -0/+1 |
| | |||||
* | backport | Skip Montanaro | 2005-11-17 | 1 | -0/+1 |
| | |||||
* | backport | Skip Montanaro | 2005-11-17 | 1 | -0/+6 |
| | |||||
* | Backport r41462: | Walter Dörwald | 2005-11-17 | 1 | -1/+1 |
| | | | | | Fix typo in comment (reported on the pydotorg mailing list). | ||||
* | update busted comment | Fred Drake | 2005-11-11 | 1 | -1/+2 |
| | |||||
* | Fixed indentation bug in _connect_unixsocket (thanks to Ken Lalonde for ↵ | Vinay Sajip | 2005-11-09 | 1 | -1/+1 |
| | | | | reporting it/supplying a patch) | ||||
* | Backport: SF Bug #1348477, regextest can't be pydoc'ed. | Neal Norwitz | 2005-11-09 | 1 | -1/+2 |
| | |||||
* | Backport: | Neal Norwitz | 2005-11-09 | 2 | -1/+8 |
| | | | | | | SF Bug #1350188, "setdlopenflags" leads to crash upon "import" It was possible dlerror() returns a NULL pointer, use a default error message in this case. | ||||
* | Backport (with output/test_poll): | Neal Norwitz | 2005-11-03 | 4 | -0/+26 |
| | | | | | Bug #1346533, select.poll() doesn't raise an error if timeout > sys.maxint Need to check return result of PyInt_AsLong() | ||||
* | Make consistent with HEAD (some change was not backported) | Neal Norwitz | 2005-11-03 | 1 | -1/+1 |
| | |||||
* | Fix SF #1346026, doc typo | Neal Norwitz | 2005-11-03 | 1 | -1/+1 |
| | |||||
* | Add an import to a code fragment. | Brett Cannon | 2005-11-02 | 1 | -1/+2 |
| | | | | Backport of fix for bug #1346395. | ||||
* | Backport: | Neal Norwitz | 2005-11-02 | 2 | -1/+2 |
| | | | | | | Fix SF #1345263, colorsys tests, bug in frange Fix a typo that caused step to be ignored. | ||||
* | Backport (with cleanup): Bug #1344508, Fix UNIX mmap leaking file descriptors. | Neal Norwitz | 2005-11-02 | 2 | -0/+6 |
| | |||||
* | Exception handling now raises KeyboardInterrupt and SystemExit rather than ↵ | Vinay Sajip | 2005-10-31 | 1 | -0/+12 |
| | | | | passing to handleError | ||||
* | Exception handling now raises KeyboardInterrupt and SystemExit rather than ↵ | Vinay Sajip | 2005-10-31 | 1 | -0/+2 |
| | | | | passing to handleError | ||||
* | add missing "and" | Fred Drake | 2005-10-30 | 1 | -2/+3 |
| | |||||
* | SF Bug #1341934: Fix a representation of "\n" to use a proper tag. | Hye-Shik Chang | 2005-10-30 | 1 | -1/+1 |
| | |||||
* | Backport: | Neal Norwitz | 2005-10-28 | 3 | -5/+33 |
| | | | | | - Patch #1338314, Bug #1336623: fix tarfile so it can extract REGTYPE directories from tarfiles written by old programs. | ||||
* | One-off "No handlers..." error message only raised if raiseExceptions is set. | Vinay Sajip | 2005-10-23 | 1 | -1/+1 |
| | |||||
* | Backport: SF bug #1167751: fix incorrect code being for generator expressions. | Neal Norwitz | 2005-10-23 | 4 | -8/+31 |
| | |||||
* | Don't use a string exception since it's deprecated | Neal Norwitz | 2005-10-21 | 1 | -1/+1 |
| | |||||
* | add missing word | Fred Drake | 2005-10-20 | 1 | -1/+1 |
| | | | | (backported from trunk revision 1.38) | ||||
* | Backport: | Neal Norwitz | 2005-10-20 | 2 | -1/+50 |
| | | | | | | | | | | | | | | Fix SF bug # 1330039, patch # 1331635 from Lars Gustaebel (tarfile maintainer) Problem: if two files are assigned the same inode number by the filesystem, the second one will be added as a hardlink to the first, which means that the content will be lost. The patched code checks if the file's st_nlink is greater 1. So only for files that actually have several links pointing to them hardlinks will be created, which is what GNU tar does. | ||||
* | Get BSD DB working most for version 3.2 | Neal Norwitz | 2005-10-20 | 1 | -0/+2 |
| | |||||
* | Backport: SF bug #1331563 ] string_subscript doesn't check for failed ↵ | Neal Norwitz | 2005-10-20 | 1 | -0/+2 |
| | | | | PyMem_Malloc. | ||||
* | Teach unquote() to handle unicode inputs | Raymond Hettinger | 2005-10-15 | 3 | -0/+9 |
| | |||||
* | Optimised Placeholders handling of child loggers by using a dict rather than ↵ | Vinay Sajip | 2005-10-14 | 1 | -4/+8 |
| | | | | a list (much slower in the pathological case of hundreds of child Loggers to a Placeholder - problem reported by Ryan Blazecka). | ||||
* | Backport: SF bug #1323739, C API doc for PySequence_Tuple duplicated | Neal Norwitz | 2005-10-12 | 1 | -9/+5 |
| | |||||
* | fix stupid typo | Fred Drake | 2005-10-11 | 1 | -1/+1 |
| | |||||
* | Added Host and Content-type headers to requests sent by HTTPHandler ↵ | Vinay Sajip | 2005-10-11 | 1 | -1/+10 |
| | | | | (suggested by Steven Vereecken) | ||||
* | Backport: SF bug #1323294, Minor error in the Library Reference doc. | Neal Norwitz | 2005-10-11 | 1 | -1/+2 |
| | |||||
* | backport Py_UNICODE clarification | Skip Montanaro | 2005-10-10 | 1 | -6/+16 |
| | |||||
* | Fix unit test failure -- the output received from Python can be empty, | Guido van Rossum | 2005-10-08 | 1 | -1/+1 |
| | | | | but verify_valid_flag() wasn't expecting that. (Backport.) | ||||
* | Fixed bug where the logging message was wrongly being demoted from Unicode ↵ | Vinay Sajip | 2005-10-07 | 1 | -6/+8 |
| | | | | to string (SF #1314107) |