- 8429b67 #15831: merge with 3.2 by Ezio Melotti · 12 years ago
- e0add76 #15831: document multiple signatures on different lines. Patch by Chris Jerdonek. by Ezio Melotti · 12 years ago
- c2085dd #15437, #15439: merge with 3.2. by Ezio Melotti · 12 years ago
- 56f37aa #15437, #15439: merge Doc/ACKS.txt with Misc/ACKS and modify Doc/about.rst accordingly. by Ezio Melotti · 12 years ago
- e8cd6bb Issue #15881: Clarify comment in exit function by Richard Oudkerk · 12 years ago
- 0b90d66 Issue #15599: FreeBSD on KVM cannot handle a very low switch interval. by Stefan Krah · 12 years ago
- d89774e Merge 3.2 fix updates and tests for issue #15906. by Barry Warsaw · 12 years ago
- 2dceb35 Update merge from 2.7: s/basetring/str by Barry Warsaw · 12 years ago
- eaae1b7 A follow up for issue #15906: change the test for calling the type conversion by Barry Warsaw · 12 years ago
- 77c4553 Merge by Antoine Pitrou · 12 years ago
- 9d20e0e Issue #15926: Fix crash after multiple reinitializations of the interpreter. by Antoine Pitrou · 12 years ago
- 10ca1fe Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to decref 'k' in too many error cases. by Christian Heimes · 12 years ago
- 55ad651 Cleanup 'k' when the creation of PySTEntryObject fails. ad3824a90261 used to decref 'k' in too many error cases. by Christian Heimes · 12 years ago
- 9c5b521 Partly revert ad3824a90261 and add comment about reference ownership by Christian Heimes · 12 years ago
- 1526582 Partly revert ad3824a90261 and add comment about reference ownership by Christian Heimes · 12 years ago
- 7ae251a Fix out of bounds read in long_new() for empty bytes with an explicit base. int(b'', somebase) calls PyLong_FromString() with char* of length 1 but the function accesses the first argument at offset 1. CID 715359 by Christian Heimes · 12 years ago
- 79b97ee Fix out of bounds read in long_new() for empty bytes with an explicit base. int(b'', somebase) calls PyLong_FromString() with char* of length 1 but the function accesses the first argument at offset 1. CID 715359 by Christian Heimes · 12 years ago
- 0ae066b - Issue #15906: Fix a regression in argparse caused by the preceding change, by Barry Warsaw · 12 years ago
- 4b2f9e9 - Issue #15906: Fix a regression in argparse caused by the preceding change, by Barry Warsaw · 12 years ago
- 8f49456 Updates NEWS for issue #15895 by Christian Heimes · 12 years ago
- a96be78 Merge #14617: clarify discussion of interrelationship of __eq__ and __hash__. by R David Murray · 12 years ago
- d8bbde3 #14617: clarify discussion of interrelationship of __eq__ and __hash__. by R David Murray · 12 years ago
- 7872697 merge heads by Benjamin Peterson · 12 years ago
- 6f3e5e4 remove useless and defined initialization (closes #15921) by Benjamin Peterson · 12 years ago
- e9a6d62 Fix null pointer dereferencing in structmember.c PyMember_SetOne() for T_CHAR. _PyUnicode_AsStringAndSize() can return NULL without touching the len argument. Also remove unnecessary PyUnicode_Check(), _PyUnicode_AsStringAndSize() performance the test again. CID 486815 by Christian Heimes · 12 years ago
- 5557a9c Fix null pointer dereferencing in structmember.c PyMember_SetOne() for T_CHAR. _PyUnicode_AsStringAndSize() can return NULL without touching the len argument. Also remove unnecessary PyUnicode_Check(), _PyUnicode_AsStringAndSize() performance the test again. CID 486815 by Christian Heimes · 12 years ago
- 6d29352 Issue #15895: my analysis was slightly off. The FILE pointer is only leaked when set_main_loader() fails for a pyc file with closeit=0. In the success case run_pyc_file() does its own cleanup of the fp. I've changed the code to use another FILE ptr for pyc files and moved the fclose() to PyRun_SimpleFileExFlags() to make it more obvious what's happening. by Christian Heimes · 12 years ago
- 6a77af6 Issue #15895: Fix FILE pointer leak in PyRun_SimpleFileExFlags() when filename points to a pyc/pyo file and closeit is false. by Christian Heimes · 12 years ago
- 26b9f4b Spelling past tense -> present tense by Christian Heimes · 12 years ago
- 5f520f4 Issue #15900: Fixed reference leak in PyUnicode_TranslateCharmap() by Christian Heimes · 12 years ago
- e4eee73 merge. Fix issue #15899: Make the unicode.rst doctests pass. Patch by Chris Jerdonek. by Senthil Kumaran · 12 years ago
- 2fd8bdb Fix issue #15899: Make the unicode.rst doctests pass. Patch by Chris Jerdonek. by Senthil Kumaran · 12 years ago
- ce478b9 #15886: remove redundant phrase by R David Murray · 12 years ago
- b7a2800 MERGE: Closes #15793: Stack corruption in ssl.RAND_egd() by Jesus Cea · 12 years ago
- c8754a1 Closes #15793: Stack corruption in ssl.RAND_egd() by Jesus Cea · 12 years ago
- 67bd81b MERGE: #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete (fix 2) by Jesus Cea · 12 years ago
- e8db356 #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete (fix 2) by Jesus Cea · 12 years ago
- 4886d5b #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete by Jesus Cea · 12 years ago
- 1f2799b #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete by Jesus Cea · 12 years ago
- 7b9c48f MERGE: #15676: Proper attribution in Misc/ACKS by Jesus Cea · 12 years ago
- 3159cb5 #15676: Proper attribution in Misc/ACKS by Jesus Cea · 12 years ago
- 76e1217 Issue #15882: Change _decimal to accept any coefficient tuple when by Stefan Krah · 12 years ago
- f47d79f Fixed reference leak in error branch of _bufferedreader_read_all(). The variable data can contain a bytes object but it wasn't cleaned up when PyList_New() failed. CID 715364 by Christian Heimes · 12 years ago
- 76c0829 Fixed memory leak in error branch of object_repr which may leak a reference to mod when type_qualname returns NULL. CID 715371 by Christian Heimes · 12 years ago
- e81dc29 Fixed memory leak in error branch of object_repr which may leak a reference to mod when type_name returns NULL. CID 715371 by Christian Heimes · 12 years ago
- 10e85de Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s going out of scope leaks the storage it points to. by Christian Heimes · 12 years ago
- 3d46339 Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s going out of scope leaks the storage it points to. by Christian Heimes · 12 years ago
- c3bfb01 Merge #14649: clarify DocTestSuite error when there are no docstrings. by R David Murray · 12 years ago
- 5abd76a #14649: clarify DocTestSuite error when there are no docstrings. by R David Murray · 12 years ago
- b83b287 Null merge for ddb406904be1 backport. by R David Murray · 12 years ago
- 7b64875 Added test for 85cb90f79cbf and see how the code handles all flags at once by Christian Heimes · 12 years ago
- 01beb69 backport from the trunk, to fix test_tools with srcdir != builddir by doko@ubuntu.com · 12 years ago
- c3a2c59 Merge by Richard Oudkerk · 12 years ago
- b517596 Issue #15901: Change example to use byte string instead of string by Richard Oudkerk · 12 years ago
- 879329d Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641 by Christian Heimes · 12 years ago
- 48d8d21 Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641 by Christian Heimes · 12 years ago
- f4f9939 Fixed memory leak in error branch of formatfloat(). CID 719687 by Christian Heimes · 12 years ago
- 89ff3c7 Fixed out-of-bounce write to rawmode buffer. The fixed size buffer wasn't enlarged for the new 'x' flag. The buffer may contain the 5 flags xrwa+ and the \0 byte by Christian Heimes · 12 years ago
- 310f814 Closed reference leak of variable 'k' in function ste_new which wasn't decrefed in error cases by Christian Heimes · 12 years ago
- 837e53a Closed reference leak of variable 'k' in function ste_new which wasn't decrefed in error cases by Christian Heimes · 12 years ago
- 4556579 Fixed possible reference leak to mod when type_name() returns NULL by Christian Heimes · 12 years ago
- a0e7e41 Fixed possible reference leak to mod when type_name() returns NULL by Christian Heimes · 12 years ago
- c4fe3fe PyTuple_Pack() was missing va_end() in its error branch which lead to a resource leak. by Christian Heimes · 12 years ago
- d5a8804 PyTuple_Pack() was missing va_end() in its error branch which lead to a resource leak. by Christian Heimes · 12 years ago
- 110ac16 Fixed resource leak to scratch when _PyUnicodeWriter_Prepare fails by Christian Heimes · 12 years ago
- f03572d Py_TYPE() has already dereferenced self before the NULL check. Moved Py_TYPE() after the check for self == NULL by Christian Heimes · 12 years ago
- 949f331 Py_TYPE() has already dereferenced self before the NULL check. Moved Py_TYPE() after the check for self == NULL by Christian Heimes · 12 years ago
- 1b5c76a Fixed two memory leaks in make_filename() in zipimport.c. The allocated buffer wasn't cleaned up in two error cases. CID 486832 by Christian Heimes · 12 years ago
- 15b6885 Make sure that *really* no more than sizeof(ifr.ifr_name) chars are strcpy-ed to ifr.ifr_name and that the string is *always* NUL terminated. New code shouldn't use strcpy(), too. CID 719692 by Christian Heimes · 12 years ago
- 1b3f3b0 Closes #15676: mmap: add empty file check prior to offset check by Jesus Cea · 12 years ago
- b21d48d merge by Alexander Belopolsky · 12 years ago
- 941bfcc Closes #15676: mmap: add empty file check prior to offset check by Jesus Cea · 12 years ago
- 7330da4 Issue #15881: Added NEWS entry and proper credit. by Alexander Belopolsky · 12 years ago
- 5bedef3 Issue #15881: Fixed 3.2 backport. by Alexander Belopolsky · 12 years ago
- 7f704c1 Fixed whitespace by Alexander Belopolsky · 12 years ago
- 3635156 Fixed whitespace by Alexander Belopolsky · 12 years ago
- f36c49d Issue #15881: Fixed atexit hook in multiprocessing. by Alexander Belopolsky · 12 years ago
- 59fb38b Issue #15881: Fixed atexit hook in multiprocessing. by Alexander Belopolsky · 12 years ago
- 5497295 Merge in changes from 3.3.0rc2 release clone. by Georg Brandl · 12 years ago
- 05823f7 Post-release updates for 3.3.0rc2. by Georg Brandl · 12 years ago
- 023e03b Added tag v3.3.0rc2 for changeset 88a0792e8ba3 by Georg Brandl · 12 years ago
- 4725b13 Issue #15822: Fix installation of lib2to3 grammar pickles to ensure by Ned Deily · 12 years ago
- b597022 null merge by Ned Deily · 12 years ago
- 47bcfff Issue #15822: Fix installation of lib2to3 grammar pickles to ensure by Ned Deily · 12 years ago
- 6f5578b Merge #5088: document behavior of optparse defaults with 'append' action. by R David Murray · 12 years ago
- 14d66a9 #5088: document behavior of optparse defaults with 'append' action. by R David Murray · 12 years ago
- 230f662 Merge Ezio's 'merge heads'. by R David Murray · 12 years ago
- 8bdcdc2 Merge heads. by Ezio Melotti · 12 years ago
- 8b61611 #15865: merge with 3.2. by Ezio Melotti · 12 years ago
- e927e25 #15865: add "*" in the signature to document keyword-only args in the docs. Patch by Chris Jerdonek. by Ezio Melotti · 12 years ago
- 0fbbce9 Merge #15510: clarify textwrap's handling of whitespace, and add confirming tests. by R David Murray · 12 years ago
- 1585b70 #15510: clarify textwrap's handling of whitespace, and add confirming tests. by R David Murray · 12 years ago
- 63755f3 merge #15847: allow args to be a tuple in parse_args by R David Murray · 12 years ago
- b522828 #15847: allow args to be a tuple in parse_args by R David Murray · 12 years ago
- 9e31d36 Issue #15814: Update whatsnew to the current state of hashing memoryviews. by Stefan Krah · 12 years ago
- 37a0170 Issue #15814: Update whatsnew to the current state of hashing memoryviews. by Stefan Krah · 12 years ago
- ea94ba4 Merge 3.2. by Stefan Krah · 12 years ago
- 96efdd4 Issue #15868: Fix refleak in bytesio.c (Coverity #715365). by Stefan Krah · 12 years ago
- 8c195af Issue #15340: Fix importing the random module when /dev/urandom cannot be opened. by Antoine Pitrou · 12 years ago
- 7ff1822 Issue #15340: Fix importing the random module when /dev/urandom cannot be opened. by Antoine Pitrou · 12 years ago