summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Patch #1227966: Do not defined _XOPEN_SOURCE_EXTENDED on Solaris 10.Martin v. Löwis2005-11-262-6/+25
| | | | Also set _XOPEN_SOURCE to 500.
* Backport checkin:Walter Dörwald2005-11-252-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örwald2005-11-251-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 longsGeorg Brandl2005-11-243-5/+47
|
* Backport of patch #1314396: prevent threading.Thread.join() from blocking if aBrett Cannon2005-11-232-16/+22
| | | | previous call raised an exception (e.g., calling it with an illegal argument).
* Bug #1357604: os.makedirs handles UNC pathsGeorg Brandl2005-11-221-3/+2
|
* added example for the ** operator in function callsGeorg Brandl2005-11-221-0/+14
|
* Patch #1255218: libmultifile.tex: tell what a decoration isGeorg Brandl2005-11-221-3/+3
|
* Bug #869197: setgroups rejects long integer argumentGeorg Brandl2005-11-222-6/+33
|
* Bug #1359035: Doc: Uxxxxxxxx escapes are interpreted in raw unicode literals.Georg Brandl2005-11-221-2/+3
|
* Add a note to os.chown that permission constants can be combinedGeorg Brandl2005-11-221-1/+2
|
* [Patch #1094164] replaceChild(x,x) ends up removing x from the tree. Add ↵Andrew M. Kuchling2005-11-222-2/+13
| | | | fix from Felix Rabe and a test case
* [Patch #1350573] zlib.crc32 doesn't handle 0xffffffff seed. Add tests and ↵Andrew M. Kuchling2005-11-222-2/+4
| | | | bugfix. Bug reported by John Schmidt; bugfix by Danny Yoo.
* [Bug #449093] FloorDiv AST node type not listedAndrew M. Kuchling2005-11-221-0/+4
|
* Backport r41489:Walter Dörwald2005-11-211-1/+1
| | | | Fix typo.
* Backport one of the ref/memory leaksNeal Norwitz2005-11-211-0/+1
|
* backportSkip Montanaro2005-11-171-0/+1
|
* backportSkip Montanaro2005-11-171-0/+6
|
* Backport r41462:Walter Dörwald2005-11-171-1/+1
| | | | | Fix typo in comment (reported on the pydotorg mailing list).
* update busted commentFred Drake2005-11-111-1/+2
|
* Fixed indentation bug in _connect_unixsocket (thanks to Ken Lalonde for ↵Vinay Sajip2005-11-091-1/+1
| | | | reporting it/supplying a patch)
* Backport: SF Bug #1348477, regextest can't be pydoc'ed.Neal Norwitz2005-11-091-1/+2
|
* Backport:Neal Norwitz2005-11-092-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 Norwitz2005-11-034-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 Norwitz2005-11-031-1/+1
|
* Fix SF #1346026, doc typoNeal Norwitz2005-11-031-1/+1
|
* Add an import to a code fragment.Brett Cannon2005-11-021-1/+2
| | | | Backport of fix for bug #1346395.
* Backport:Neal Norwitz2005-11-022-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 Norwitz2005-11-022-0/+6
|
* Exception handling now raises KeyboardInterrupt and SystemExit rather than ↵Vinay Sajip2005-10-311-0/+12
| | | | passing to handleError
* Exception handling now raises KeyboardInterrupt and SystemExit rather than ↵Vinay Sajip2005-10-311-0/+2
| | | | passing to handleError
* add missing "and"Fred Drake2005-10-301-2/+3
|
* SF Bug #1341934: Fix a representation of "\n" to use a proper tag.Hye-Shik Chang2005-10-301-1/+1
|
* Backport:Neal Norwitz2005-10-283-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 Sajip2005-10-231-1/+1
|
* Backport: SF bug #1167751: fix incorrect code being for generator expressions.Neal Norwitz2005-10-234-8/+31
|
* Don't use a string exception since it's deprecatedNeal Norwitz2005-10-211-1/+1
|
* add missing wordFred Drake2005-10-201-1/+1
| | | | (backported from trunk revision 1.38)
* Backport:Neal Norwitz2005-10-202-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.2Neal Norwitz2005-10-201-0/+2
|
* Backport: SF bug #1331563 ] string_subscript doesn't check for failed ↵Neal Norwitz2005-10-201-0/+2
| | | | PyMem_Malloc.
* Teach unquote() to handle unicode inputsRaymond Hettinger2005-10-153-0/+9
|
* Optimised Placeholders handling of child loggers by using a dict rather than ↵Vinay Sajip2005-10-141-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 duplicatedNeal Norwitz2005-10-121-9/+5
|
* fix stupid typoFred Drake2005-10-111-1/+1
|
* Added Host and Content-type headers to requests sent by HTTPHandler ↵Vinay Sajip2005-10-111-1/+10
| | | | (suggested by Steven Vereecken)
* Backport: SF bug #1323294, Minor error in the Library Reference doc.Neal Norwitz2005-10-111-1/+2
|
* backport Py_UNICODE clarificationSkip Montanaro2005-10-101-6/+16
|
* Fix unit test failure -- the output received from Python can be empty,Guido van Rossum2005-10-081-1/+1
| | | | but verify_valid_flag() wasn't expecting that. (Backport.)
* Fixed bug where the logging message was wrongly being demoted from Unicode ↵Vinay Sajip2005-10-071-6/+8
| | | | to string (SF #1314107)