summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Issue #11826: Fix memory leak in atexitmodule.Stefan Krah2012-03-271-1/+9
* Fix time.steady(strict=True): don't use CLOCK_REALTIMEVictor Stinner2012-03-261-7/+28
* Issue #14368: _PyTime_gettimeofday() cannot failVictor Stinner2012-03-261-7/+1
* Issue #3367: Merge fix from 3.2.Stefan Krah2012-03-261-2/+4
|\
| * Issue #3367: NULL-terminate argv[] copies to prevent an invalid accessStefan Krah2012-03-261-2/+4
* | Raise MemoryError instead of InvalidOperation/MallocError for compatibilityStefan Krah2012-03-251-1/+8
* | Issue #14154: Reimplement the bigmem test memory watchdog as a subprocess.Charles-François Natali2012-03-241-184/+0
* | Fix formatting after removing tabs.Stefan Krah2012-03-232-4/+8
* | Whitespace.Stefan Krah2012-03-232-102/+102
* | Use the same exception hierarchy as decimal.py. FloatOperation now alsoStefan Krah2012-03-231-20/+65
* | Issue #13782: streamline argument type-checking in ET.ElementEli Bendersky2012-03-231-0/+9
* | Issue #14387: Do not include accu.h from Python.h.Antoine Pitrou2012-03-222-0/+3
|\ \ | |/
| * Issue #14359: Only use O_CLOEXEC in _posixmodule.c if it is defined.Ross Lagerwall2012-03-191-1/+12
* | Issue #14204: The ssl module now has support for the Next Protocol Negotiatio...Antoine Pitrou2012-03-211-0/+115
* | Whitespace.Stefan Krah2012-03-216-168/+168
* | Issue #7652: Integrate the decimal floating point libmpdec library to speedStefan Krah2012-03-2154-0/+26284
* | Issue #14328: Add keyword-only parameters to PyArg_ParseTupleAndKeywords.Larry Hastings2012-03-201-1/+19
* | Issue 14359: Only use O_CLOEXEC in _posixmodule.c if it is defined.Ross Lagerwall2012-03-181-1/+12
* | cleanup Ellipsis and NotImplemented strings after we're doneBenjamin Peterson2012-03-161-2/+8
* | fix condition (#14296)Benjamin Peterson2012-03-161-1/+1
* | Issue #14207: the ParseError exception raised by _elementtree was madeEli Bendersky2012-03-161-8/+27
* | Closes Issue #14246: _elementtree parser will now handle io.StringIOEli Bendersky2012-03-161-1/+22
* | try to fix compilation on glibc's with cpu sets (#14296)Benjamin Peterson2012-03-151-0/+4
* | Fixes Issue 14234: fix for the previous commit, keep compilation whenGregory P. Smith2012-03-152-0/+7
|\ \ | |/
| * Fixes Issue 14234: fix for the previous commit, keep compilation whenGregory P. Smith2012-03-152-0/+7
* | Issue #10278: Add an optional strict argument to time.steady(), False by defaultVictor Stinner2012-03-151-17/+41
* | Issue #10278: Drop time.monotonic() function, rename time.wallclock() to time...Victor Stinner2012-03-141-67/+15
* | fix compiler warningsBenjamin Peterson2012-03-141-4/+4
* | Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributesGregory P. Smith2012-03-144-59/+130
|\ \ | |/
| * Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributesGregory P. Smith2012-03-144-59/+130
| |\
| | * Fixes issue #14234: CVE-2012-0876: Randomize hashes of xml attributesGregory P. Smith2012-03-144-59/+130
* | | Avoid main_window unused compiler warning.Gregory P. Smith2012-03-141-0/+6
* | | Revert the patch for issue 3835 because failed on Windows buildbotAndrew Svetlov2012-03-141-7/+0
* | | Issue #14180: Fix the select module to handle correctly the Windows timevalVictor Stinner2012-03-131-3/+16
* | | Issue #14180: datetime.date.fromtimestamp(), datetime.datetime.fromtimestamp()Victor Stinner2012-03-131-36/+39
* | | merge 3.2Benjamin Peterson2012-03-131-7/+7
|\ \ \ | |/ /
| * | fix indentationBenjamin Peterson2012-03-131-7/+7
* | | Issue #3835: Refuse to use unthreaded Tcl in threaded Python.Martin v. Löwis2012-03-131-0/+7
* | | Issue #14180: Fix another typo in kqueue_queue_control()Victor Stinner2012-03-131-1/+1
* | | Issue #14180: Fix select.select() compilation on BSD and a typo in kqueue_que...Victor Stinner2012-03-131-2/+4
* | | Close #14180: Factorize code to convert a number of seconds to time_t, timeva...Victor Stinner2012-03-137-152/+80
* | | closes #14259 re.finditer() now takes keyword arguments: pos, endpos.Sean Reifschneider2012-03-131-7/+9
* | | Issue #14104: Implement time.monotonic() on Mac OS X,Victor Stinner2012-03-121-1/+17
* | | minor PEP7-related fixŁukasz Langa2012-03-121-2/+2
* | | #13842: check whether PyUnicode_FromString succeededŁukasz Langa2012-03-121-3/+8
* | | Fixes #13842: cannot pickle Ellipsis or NotImplemented.Łukasz Langa2012-03-121-0/+21
* | | Issue #14178: Problem deleting slices with steps != +1 in the _elementtree mo...Eli Bendersky2012-03-091-3/+67
* | | Close #14223: curses.addch() is no more limited to the range 0-255 when theVictor Stinner2012-03-081-1/+1
* | | merge 3.2 (#14212)Benjamin Peterson2012-03-072-25/+42
|\ \ \ | |/ /
| * | keep the buffer object around while we're using it (closes #14212)Benjamin Peterson2012-03-072-33/+49