- ca8aa4a Issue #15144: Fix possible integer overflow when handling pointers as integer values, by using Py_uintptr_t instead of size_t. by Antoine Pitrou · 12 years ago
- 1c47222 merge by Christian Heimes · 12 years ago
- 5cb31c9 Issue #15977: Fix memory leak in Modules/_ssl.c when the function _set_npn_protocols() is called multiple times by Christian Heimes · 12 years ago
- fe6e7e6 Merge the quotes/backslashes fixes with 3.2. by Ezio Melotti · 12 years ago
- 694f233 Fix a few quotes/backslashes. by Ezio Melotti · 12 years ago
- a58d8b0 Merge markup fixes in smtpd.rst with 3.2. by Ezio Melotti · 12 years ago
- 8bbcb58 Fix markup in smtpd.rst. by Ezio Melotti · 12 years ago
- be54d6d Update suspicious ignore file. by Ezio Melotti · 12 years ago
- 7598e18 Fix rst markup. by Ezio Melotti · 12 years ago
- f6813f6 Merge rst markup fixes in timeit docs with 3.2. by Ezio Melotti · 12 years ago
- a3ccb23 Fix rst markup in timeit docs. by Ezio Melotti · 12 years ago
- ab9b661 #15970: merge with 3.2. by Ezio Melotti · 12 years ago
- c90111f #15970: xml.etree.ElementTree now serializes correctly the empty HTML elements "meta" and "param". by Ezio Melotti · 12 years ago
- da064d0 Silence compiler warnings on Solaris 10 via explicit (void *) casts. by Trent Nelson · 12 years ago
- ab02db2 Silence compiler warnings on Solaris 10 via explicit (void *) casts. by Trent Nelson · 12 years ago
- 9a46105 #15965: Explicitly cast AT_FDCWD as (int). by Trent Nelson · 12 years ago
- 1da769a What's New in Python 3.3: mention unittest.mock by Victor Stinner · 12 years ago
- 6d10b4d #15796: merge with 3.2. by Ezio Melotti · 12 years ago
- 16d2b47 #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
- 4a5fae1 #11643: merge with 3.2. by Ezio Melotti · 12 years ago
- 26e5878 #11643: fix rst markup error in site.rst. by Ezio Melotti · 12 years ago
- 8646e8e #15920: merge with 3.2. by Ezio Melotti · 12 years ago
- 13bec9b #15920: fix doctests in Doc/howto/regex.rst. Patch by Chris Jerdonek. by Ezio Melotti · 12 years ago
- 0708533 Issue #15526: try to fix test_startfile's inability to clean up after itself in time. by Antoine Pitrou · 12 years ago
- 8a53dbe Issue #15526: try to fix test_startfile's inability to clean up after itself in time. by Antoine Pitrou · 12 years ago
- a5377ca #15789: merge with 3.2. by Ezio Melotti · 12 years ago
- 186d523 #15789: mention shell-like parts of the stdlib in the subprocess docs. Patch by Chris Rebert. by Ezio Melotti · 12 years ago
- 711f093 #15932: merge with 3.2. by Ezio Melotti · 12 years ago
- e34f8a9 #15932: use with statement in csv doc examples. Patch by Dario Bertini. by Ezio Melotti · 12 years ago
- 9b1c84b Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise ValueError when the file-like object is closed. by Antoine Pitrou · 12 years ago
- 1e7ee9d Issue #15842: the SocketIO.{readable,writable,seekable} methods now raise ValueError when the file-like object is closed. by Antoine Pitrou · 12 years ago
- 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