summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* Fix a typo in commentAmaury Forgeot d'Arc2009-12-271-2/+2
* Fix possible integer overflow in lchown and fchown functions. For issue1747858.Gregory P. Smith2009-12-231-4/+5
* Inverse hyperbolic trigonometric functions should call m_log1p, not log1p.Mark Dickinson2009-12-211-4/+5
* Issue #7518: Move substitute definitions of C99 math functions fromMark Dickinson2009-12-215-11/+245
* Additional edge-case tests for test_long_and_overflow.Mark Dickinson2009-12-211-16/+107
* Fix reference counts for test_long_and_overflow.Mark Dickinson2009-12-211-0/+6
* Issue #7528: Backport PyLong_AsLongAndOverflow from py3k to trunk.Mark Dickinson2009-12-211-0/+70
* Add missing tests for PyArg_Parse* with format 'h'Mark Dickinson2009-12-201-0/+10
* math.factorial depends on PyLong_AsLong correctly converting floats; rewriteMark Dickinson2009-12-201-2/+9
* Issue #7545: improve documentation of the `buffering` argument in io.open().Antoine Pitrou2009-12-191-4/+14
* Issue #3366: Add error function and complementary error function toMark Dickinson2009-12-191-0/+142
* Issue #3366: Add expm1 function to math module. Thanks Eric Smith forMark Dickinson2009-12-164-1/+47
* add a test of loading the datetime capiBenjamin Peterson2009-12-131-0/+16
* remove unused variableBenjamin Peterson2009-12-131-1/+1
* accept None as the same as having passed no argument in file types #7349Benjamin Peterson2009-12-136-25/+32
* Issue #3366: Add lgamma function to math module.Mark Dickinson2009-12-111-0/+57
* Add a reverse() method to collections.deque().Raymond Hettinger2009-12-101-0/+44
* Fix variants of deque.extend: d.extend(d) d+=d d.extendleft(d)Raymond Hettinger2009-12-101-0/+40
* Issue #6986: Fix crash in the JSON C accelerator when called with theAntoine Pitrou2009-12-081-4/+17
* Issue #7333: The `posix` module gains an `initgroups()` function providingAntoine Pitrou2009-12-021-0/+27
* #7419: Fix a crash on Windows in locale.setlocale() when the categoryAmaury Forgeot d'Arc2009-12-011-0/+8
* Handle step values other than one.Raymond Hettinger2009-11-301-1/+2
* Issue 7410: deepcopy of itertools.count resets the countRaymond Hettinger2009-11-301-1/+16
* Issue #7272, continued: don't re-use existing HAVE_BROKEN_POSIX_SEMAPHORESMark Dickinson2009-11-282-3/+3
* Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}.Martin v. Löwis2009-11-271-0/+89
* Issue #5788: `datetime.timedelta` objects get a new `total_seconds()` method ...Antoine Pitrou2009-11-251-1/+12
* Issue #7228: Fix format mismatch when printing something of type off_t.Mark Dickinson2009-11-242-3/+21
* Issue 7128: Removed reference to the non-existent copyreg module.Alexandre Vassalotti2009-11-241-3/+2
* Issue #7272: Add configure test to detect whether sem_open worksMark Dickinson2009-11-202-3/+4
* Fix docstrings for itertools combinatoric functions.Raymond Hettinger2009-11-191-4/+4
* Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString,Mark Dickinson2009-11-151-0/+6
* Issue #7211: Allow 64-bit values for the `ident` and `data` fields of keventAntoine Pitrou2009-11-041-12/+42
* #7259: show correct equivalent for operator.i* operations in docstring; fix m...Georg Brandl2009-11-041-16/+16
* Fix exception handling in itertools.izip_longest().Raymond Hettinger2009-11-011-35/+37
* Buffered I/O: optimize lock taking in the common non-contended case.Antoine Pitrou2009-11-011-3/+5
* Define TCSASOFT if the flag exists.Gregory P. Smith2009-10-311-0/+3
* Remove official documentation entry for thread._count() and make theAntoine Pitrou2009-10-301-2/+8
* Issue #7222: Make thread "reaping" more reliable so that referenceAntoine Pitrou2009-10-301-1/+19
* Use a single style for all the docstrings in the math module.Georg Brandl2009-10-291-15/+19
* Use the correct function name in docstring.Georg Brandl2009-10-291-1/+1
* Roll back ill-considered attempts to fix printf specifier mismatch for off_t.Mark Dickinson2009-10-292-26/+9
* Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in _json.c a...Eric Smith2009-10-281-1/+5
* Fix format specifier for MSVCMark Dickinson2009-10-281-1/+1
* Replace long long with PY_LONG_LONGMark Dickinson2009-10-281-2/+2
* Silence gcc warnings when trying to print an off_t using "lld", on platformsMark Dickinson2009-10-272-3/+14
* Issue #7205: Fix a possible deadlock when using a BZ2File object from several...Antoine Pitrou2009-10-271-1/+6
* Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in stropmodu...Eric Smith2009-10-271-8/+4
* Issue 7117: Replace PyOS_ascii_strtod with PyOS_string_to_double in cPickle a...Eric Smith2009-10-271-4/+4
* Use correct conversion specifier and length modifier when printing anMark Dickinson2009-10-262-8/+14
* Some platforms have rl_completion_append_character but not rl_completion_supp...Antoine Pitrou2009-10-261-0/+2