summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* MERGE: #15676: Proper attribution in Misc/ACKSJesus Cea2012-09-101-0/+1
|\
| * #15676: Proper attribution in Misc/ACKSJesus Cea2012-09-101-0/+1
| |
* | Issue #15882: Change _decimal to accept any coefficient tuple whenStefan Krah2012-09-103-7/+21
| | | | | | | | | | | | constructing infinities. This is done for backwards compatibility with decimal.py: Infinity coefficients are undefined in _decimal (in accordance with the specification).
* | Fixed reference leak in error branch of _bufferedreader_read_all(). The ↵Christian Heimes2012-09-101-1/+3
| | | | | | | | variable data can contain a bytes object but it wasn't cleaned up when PyList_New() failed. CID 715364
* | Fixed memory leak in error branch of object_repr which may leak a reference ↵Christian Heimes2012-09-101-1/+3
|\ \ | |/ | | | | to mod when type_qualname returns NULL. CID 715371
| * Fixed memory leak in error branch of object_repr which may leak a reference ↵Christian Heimes2012-09-101-1/+3
| | | | | | | | to mod when type_name returns NULL. CID 715371
* | Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s ↵Christian Heimes2012-09-101-0/+1
|\ \ | |/ | | | | going out of scope leaks the storage it points to.
| * Fixed memory leak in error branch of parsestrplus. CID 715374 Variable s ↵Christian Heimes2012-09-101-0/+1
| | | | | | | | going out of scope leaks the storage it points to.
* | Merge #14649: clarify DocTestSuite error when there are no docstrings.R David Murray2012-09-106-6/+84
|\ \ | |/ | | | | | | | | | | Also adds tests to verify the documented behavior (which is probably a bug, as indicated in the added comments). Patch by Chris Jerdonek.
| * #14649: clarify DocTestSuite error when there are no docstrings.R David Murray2012-09-106-6/+84
| | | | | | | | | | | | | | Also adds tests to verify the documented behavior (which is probably a bug, as indicated in the added comments). Patch by Chris Jerdonek.
* | Null merge for ddb406904be1 backport.R David Murray2012-09-100-0/+0
|\ \ | |/
| * backport from the trunk, to fix test_tools with srcdir != builddirdoko@ubuntu.com2012-09-101-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | changeset: 77827:c23b442b5d5e user: Antoine Pitrou <solipsis@pitrou.net> date: Thu Jun 28 01:20:26 2012 +0200 summary: Avoid using scrdir, it's broken. changeset: 77826:f0e58e778215 user: Neil Schemenauer <nas@arctrix.com> date: Wed Jun 27 15:58:37 2012 -0600 summary: Fix bug in test_tools that prevented building is separate directory.
* | Added test for 85cb90f79cbf and see how the code handles all flags at onceChristian Heimes2012-09-101-0/+5
| |
* | MergeRichard Oudkerk2012-09-101-1/+1
|\ \ | |/
| * Issue #15901: Change example to use byte string instead of stringRichard Oudkerk2012-09-101-1/+1
| |
* | Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641Christian Heimes2012-09-101-0/+1
|\ \ | |/
| * Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641Christian Heimes2012-09-101-0/+1
| |
* | Fixed memory leak in error branch of formatfloat(). CID 719687Christian Heimes2012-09-101-1/+3
| |
* | Fixed out-of-bounce write to rawmode buffer. The fixed size buffer wasn't ↵Christian Heimes2012-09-101-1/+1
| | | | | | | | enlarged for the new 'x' flag. The buffer may contain the 5 flags xrwa+ and the \0 byte
* | Closed reference leak of variable 'k' in function ste_new which wasn't ↵Christian Heimes2012-09-101-1/+2
|\ \ | |/ | | | | decrefed in error cases
| * Closed reference leak of variable 'k' in function ste_new which wasn't ↵Christian Heimes2012-09-101-1/+2
| | | | | | | | decrefed in error cases
* | Fixed possible reference leak to mod when type_name() returns NULLChristian Heimes2012-09-101-1/+3
|\ \ | |/
| * Fixed possible reference leak to mod when type_name() returns NULLChristian Heimes2012-09-101-1/+3
| |
* | PyTuple_Pack() was missing va_end() in its error branch which lead to a ↵Christian Heimes2012-09-101-1/+3
|\ \ | |/ | | | | resource leak.
| * PyTuple_Pack() was missing va_end() in its error branch which lead to a ↵Christian Heimes2012-09-101-1/+3
| | | | | | | | resource leak.
* | Fixed resource leak to scratch when _PyUnicodeWriter_Prepare failsChristian Heimes2012-09-101-1/+3
| |
* | Py_TYPE() has already dereferenced self before the NULL check. Moved ↵Christian Heimes2012-09-101-1/+2
|\ \ | |/ | | | | Py_TYPE() after the check for self == NULL
| * Py_TYPE() has already dereferenced self before the NULL check. Moved ↵Christian Heimes2012-09-101-1/+2
| | | | | | | | Py_TYPE() after the check for self == NULL
* | Fixed two memory leaks in make_filename() in zipimport.c. The allocated ↵Christian Heimes2012-09-101-2/+6
| | | | | | | | buffer wasn't cleaned up in two error cases. CID 486832
* | Make sure that *really* no more than sizeof(ifr.ifr_name) chars are ↵Christian Heimes2012-09-091-1/+2
| | | | | | | | strcpy-ed to ifr.ifr_name and that the string is *always* NUL terminated. New code shouldn't use strcpy(), too. CID 719692
* | Closes #15676: mmap: add empty file check prior to offset checkJesus Cea2012-09-093-0/+17
|\ \ | |/
| * Closes #15676: mmap: add empty file check prior to offset checkJesus Cea2012-09-093-0/+17
| |
* | mergeAlexander Belopolsky2012-09-091-0/+7
|\ \ | |/
| * Issue #15881: Added NEWS entry and proper credit.Alexander Belopolsky2012-09-092-1/+3
| |
| * Issue #15881: Fixed 3.2 backport.Alexander Belopolsky2012-09-091-0/+2
| |
| * Fixed whitespaceAlexander Belopolsky2012-09-091-1/+1
| |
| * Issue #15881: Fixed atexit hook in multiprocessing.Alexander Belopolsky2012-09-092-16/+39
| |
* | Fixed whitespaceAlexander Belopolsky2012-09-091-1/+1
| |
* | Issue #15881: Fixed atexit hook in multiprocessing.Alexander Belopolsky2012-09-092-9/+33
| |
* | Merge in changes from 3.3.0rc2 release clone.Georg Brandl2012-09-097-17/+36
|\ \
| * | Post-release updates for 3.3.0rc2.Georg Brandl2012-09-092-1/+13
| | |
| * | Added tag v3.3.0rc2 for changeset 88a0792e8ba3Georg Brandl2012-09-091-0/+1
| | |
| * | Issue #15814: Update whatsnew to the current state of hashing memoryviews.v3.3.0rc2Stefan Krah2012-09-081-3/+2
| | |
| * | Issue #15814: Add NEWS entry regarding intended memoryview hashing restrictionsNick Coghlan2012-09-031-0/+8
| | |
| * | Issue #15814: Documentation: disallow hashing of multi-dimensional memoryviews.Stefan Krah2012-09-021-6/+8
| | |
| * | Bump to 3.3.0rc2.Georg Brandl2012-09-096-7/+7
| | |
| * | Fix NEWS entry location.Georg Brandl2012-09-091-3/+6
| | |
| * | Issue #15822: Fix installation of lib2to3 grammar pickles to ensureNed Deily2012-09-093-3/+25
| | | | | | | | | | | | | | | they are created in the install locations and with the proper timestamp. (Solution suggested by MvL)
| * | Issue #13992: The trashcan mechanism is now thread-safe. This eliminatesAntoine Pitrou2012-09-057-9/+140
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sporadic crashes in multi-thread programs when several long deallocator chains ran concurrently and involved subclasses of built-in container types. Because of this change, a couple extension modules compiled for 3.2.4 (those which use the trashcan mechanism, despite it being undocumented) will not be loadable by 3.2.3 and earlier. However, extension modules compiled for 3.2.3 and earlier will be loadable by 3.2.4.
| * | Changelog entry for 8c2e87aeb707.Georg Brandl2012-09-081-0/+3
| | |