| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #7333: The `posix` module gains an `initgroups()` function providing | Antoine Pitrou | 2009-12-02 | 1 | -0/+27 |
| | | | | | | access to the initgroups(3) C library call on Unix systems which implement it. Patch by Jean-Paul Calderone. | ||||
| * | #7419: Fix a crash on Windows in locale.setlocale() when the category | Amaury Forgeot d'Arc | 2009-12-01 | 1 | -0/+8 |
| | | | | | is outside the allowed range. | ||||
| * | Handle step values other than one. | Raymond Hettinger | 2009-11-30 | 1 | -1/+2 |
| | | |||||
| * | Issue 7410: deepcopy of itertools.count resets the count | Raymond Hettinger | 2009-11-30 | 1 | -1/+16 |
| | | |||||
| * | Issue #7272, continued: don't re-use existing HAVE_BROKEN_POSIX_SEMAPHORES | Mark Dickinson | 2009-11-28 | 2 | -3/+3 |
| | | | | | | to indicate that semaphores aren't available; define a new variable POSIX_SEMAPHORES_NOT_ENABLED instead. | ||||
| * | Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}. | Martin v. Löwis | 2009-11-27 | 1 | -0/+89 |
| | | |||||
| * | Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method ↵ | Antoine Pitrou | 2009-11-25 | 1 | -1/+12 |
| | | | | | | | returning the total number of seconds in the duration. Patch by Brian Quinlan. | ||||
| * | Issue #7228: Fix format mismatch when printing something of type off_t. | Mark Dickinson | 2009-11-24 | 2 | -3/+21 |
| | | | | | (Should silence some compiler warnings.) | ||||
| * | Issue 7128: Removed reference to the non-existent copyreg module. | Alexandre Vassalotti | 2009-11-24 | 1 | -3/+2 |
| | | | | | | | | | | The reference to copyreg was a unnoticed leftover from the compatibility support for the grand renaming of the standard library in Python 3. The compatibility support was reverted in r63493, but not completely as this patch shows. Based on a patch by Amaury Forgeot d'Arc. | ||||
| * | Issue #7272: Add configure test to detect whether sem_open works | Mark Dickinson | 2009-11-20 | 2 | -3/+4 |
| | | | | | | | properly, and use this to skip test_multiprocessing on platforms where sem_open raises a signal. This should fix some FreeBSD buildbot failures for test_multiprocessing. | ||||
| * | Fix docstrings for itertools combinatoric functions. | Raymond Hettinger | 2009-11-19 | 1 | -4/+4 |
| | | |||||
| * | Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString, | Mark Dickinson | 2009-11-15 | 1 | -0/+6 |
| | | | | | PyFormat_FromStringV and PyErr_Format. | ||||
| * | Issue #7211: Allow 64-bit values for the `ident` and `data` fields of kevent | Antoine Pitrou | 2009-11-04 | 1 | -12/+42 |
| | | | | | | | objects on 64-bit systems. Patch by Michael Broghton. I will revert this checkin if it causes problems on our BSD buildbots. | ||||
| * | #7259: show correct equivalent for operator.i* operations in docstring; fix ↵ | Georg Brandl | 2009-11-04 | 1 | -16/+16 |
| | | | | | minor issues in operator docs. | ||||
| * | Fix exception handling in itertools.izip_longest(). | Raymond Hettinger | 2009-11-01 | 1 | -35/+37 |
| | | |||||
| * | Buffered I/O: optimize lock taking in the common non-contended case. | Antoine Pitrou | 2009-11-01 | 1 | -3/+5 |
| | | |||||
| * | Define TCSASOFT if the flag exists. | Gregory P. Smith | 2009-10-31 | 1 | -0/+3 |
| | | |||||
| * | Remove official documentation entry for thread._count() and make the | Antoine Pitrou | 2009-10-30 | 1 | -2/+8 |
| | | | | | docstring more descriptive instead. | ||||
| * | Issue #7222: Make thread "reaping" more reliable so that reference | Antoine Pitrou | 2009-10-30 | 1 | -1/+19 |
| | | | | | | | | leak-chasing test runs give sensible results. The previous method of reaping threads could return successfully while some Thread objects were still referenced. This also introduces a new private function: :func:hread._count(). | ||||
| * | Use a single style for all the docstrings in the math module. | Georg Brandl | 2009-10-29 | 1 | -15/+19 |
| | | |||||
| * | Use the correct function name in docstring. | Georg Brandl | 2009-10-29 | 1 | -1/+1 |
| | | |||||
| * | Roll back ill-considered attempts to fix printf specifier mismatch for off_t. | Mark Dickinson | 2009-10-29 | 2 | -26/+9 |
| | | | | | | The sensible solution seems to be to implement %lld for PyString_FromFormat(V) and PyErr_Format. See issue #7228. | ||||
| * | Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in _json.c ↵ | Eric Smith | 2009-10-28 | 1 | -1/+5 |
| | | | | | as part of short float repr. Change made after consulting with Bob Ippolito. This completes the removal of calls to PyOS_ascii_strtod. | ||||
| * | Fix format specifier for MSVC | Mark Dickinson | 2009-10-28 | 1 | -1/+1 |
| | | |||||
| * | Replace long long with PY_LONG_LONG | Mark Dickinson | 2009-10-28 | 1 | -2/+2 |
| | | |||||
| * | Silence gcc warnings when trying to print an off_t using "lld", on platforms | Mark Dickinson | 2009-10-27 | 2 | -3/+14 |
| | | | | | where off_t has type long (e.g., 64-bit Linux). | ||||
| * | Issue #7205: Fix a possible deadlock when using a BZ2File object from ↵ | Antoine Pitrou | 2009-10-27 | 1 | -1/+6 |
| | | | | | several threads at once. | ||||
| * | Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in ↵ | Eric Smith | 2009-10-27 | 1 | -8/+4 |
| | | | | | stropmodule as part of short float repr. | ||||
| * | Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in cPickle ↵ | Eric Smith | 2009-10-27 | 1 | -4/+4 |
| | | | | | as part of short float repr. | ||||
| * | Use correct conversion specifier and length modifier when printing an | Mark Dickinson | 2009-10-26 | 2 | -8/+14 |
| | | | | | integer of type off_t. Also, don't assume that long long is available. | ||||
| * | Some platforms have rl_completion_append_character but not ↵ | Antoine Pitrou | 2009-10-26 | 1 | -0/+2 |
| | | | | | | | rl_completion_suppress_append. Reported by Mark D. | ||||
| * | Continue removing _PyOS_double_to_string, as mentioned in issue 7117. | Eric Smith | 2009-10-26 | 1 | -8/+22 |
| | | |||||
| * | Fix compilation error in debug mode. | Antoine Pitrou | 2009-10-24 | 1 | -3/+0 |
| | | |||||
| * | Manual py3k backport: [svn r74316] Issue #5449: Fix io.BytesIO to not accept ↵ | Antoine Pitrou | 2009-10-24 | 1 | -1/+3 |
| | | | | | arbitrary keywords | ||||
| * | Manual py3k backport: [svn r74158] Issue #6218: Make io.BytesIO and ↵ | Antoine Pitrou | 2009-10-24 | 2 | -9/+260 |
| | | | | | io.StringIO picklable. | ||||
| * | Manual py3k backport: [svn r74155] Issue #6242: Fix deallocator of ↵ | Antoine Pitrou | 2009-10-24 | 2 | -6/+10 |
| | | | | | io.StringIO and io.BytesIO | ||||
| * | Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which | Antoine Pitrou | 2009-10-20 | 1 | -29/+0 |
| | | | | | | fixes the problem of some exceptions being thrown at shutdown when the interpreter is killed. Patch by Adam Olsen. | ||||
| * | Issue #5833: Fix extra space character in readline completion with the | Antoine Pitrou | 2009-10-19 | 1 | -3/+4 |
| | | | | | GNU readline library version 6.0. | ||||
| * | Issue #7133: SSL objects now support the new buffer API. | Antoine Pitrou | 2009-10-19 | 1 | -11/+16 |
| | | | | | This fixes the test_ssl failure. | ||||
| * | Fix refleaks in _ctypes PyCSimpleType_New, which fixes the refleak seen in ↵ | Georg Brandl | 2009-10-17 | 1 | -3/+3 |
| | | | | | test___all__. | ||||
| * | Make cPickle.Unpickler.noload() handle dict subclasses. noload() is | Neil Schemenauer | 2009-10-14 | 1 | -4/+31 |
| | | | | | | an obscure, undocumentated feature so no test was added. Closes issue #1101399. | ||||
| * | Issue #7078: _struct.__doc__ was being ignored. Import it into struct. | Mark Dickinson | 2009-10-08 | 1 | -8/+10 |
| | | | | | | Also add description of '?' struct format character. Thanks Gabriel Genellina for the patch. | ||||
| * | #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric, | Amaury Forgeot d'Arc | 2009-10-06 | 2 | -131/+245 |
| | | | | | | | _PyUnicode_IsLinebreak and _PyUnicode_IsWhitespace. It now also parses the Unihan.txt for numeric values. | ||||
| * | Fix compilation warning on Windows, where size_t is 32bit but file offsets ↵ | Amaury Forgeot d'Arc | 2009-10-05 | 1 | -6/+7 |
| | | | | | are 64bit. | ||||
| * | #6990: clear threading.local's key only after its thread state is removed: | Philip Jenvey | 2009-09-29 | 1 | -1/+1 |
| | | | | | | fixes local subclasses leaving old state around after a ref cycle GC which could be recycled by new locals | ||||
| * | Issue #3366: Add gamma function to math module. | Mark Dickinson | 2009-09-28 | 1 | -35/+325 |
| | | | | | (lgamma, erf and erfc to follow). | ||||
| * | Eliminate unnecessary get_wrapped_(u)long defines in struct module. | Mark Dickinson | 2009-09-27 | 1 | -9/+6 |
| | | |||||
| * | #6243: fix segfault when keyname() returns a NULL pointer. | Andrew M. Kuchling | 2009-09-25 | 1 | -4/+7 |
| | | | | | Bug noted by Trundle, patched by Trundle and Jerry Chen. | ||||
| * | http://bugs.python.org/issue6971 | Kristján Valur Jónsson | 2009-09-25 | 1 | -15/+39 |
| | | | | | Adding the SIO_KEEPALIVE_VALS command to socket.ioctl on windows | ||||
| * | Fix whitespace. | Brett Cannon | 2009-09-22 | 1 | -42/+43 |
| | | |||||
