summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* merge 3.1 (#14509)Benjamin Peterson2012-04-092-0/+4
|\
| * fix build without Py_DEBUG and DNDEBUG (closes #14509)Benjamin Peterson2012-04-092-0/+4
* | adjust formattingBenjamin Peterson2012-04-011-5/+5
* | remove extraneous conditionBenjamin Peterson2012-04-011-6/+4
* | merge headsBenjamin Peterson2012-04-011-2/+6
|\ \
| * | Issue #13019: Fix potential reference leaks in bytearray.extend().Antoine Pitrou2012-04-011-2/+6
* | | be consistent with rest of functionBenjamin Peterson2012-04-011-2/+1
|/ /
* | kill this terribly outdated commentBenjamin Peterson2012-03-261-4/+0
* | Issue #14387: Do not include accu.h from Python.h.Antoine Pitrou2012-03-223-0/+3
* | check to make sure the attribute is a string (#14334)Benjamin Peterson2012-03-161-0/+7
* | allow cycles throught the __dict__ slot to be cleared (closes #1469629)Benjamin Peterson2012-03-081-2/+7
* | Issue #13521: dict.setdefault() now does only one lookup for the given key, m...Antoine Pitrou2012-02-261-42/+70
* | merge 3.2Benjamin Peterson2012-02-212-0/+2
|\ \ | |/
| * ensure no one tries to hash things before the random seed is foundBenjamin Peterson2012-02-212-0/+2
* | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-203-2/+24
|\ \ | |/
| * Issue #13703: add a way to randomize the hash values of basic types (str, byt...Georg Brandl2012-02-203-2/+24
* | use Py_CLEARBenjamin Peterson2012-02-191-3/+1
* | Fix indentationAntoine Pitrou2012-02-151-12/+12
* | Issue #13020: Fix a reference leak when allocating a structsequence object fa...Antoine Pitrou2012-02-151-0/+1
* | Issue #13913: normalize utf-8 codec name in UTF-8 decoderVictor Stinner2012-02-141-1/+1
* | this is only a borrowed ref in Brett's branchBenjamin Peterson2012-02-101-1/+1
* | bltinmod is borrowed, so it shouldn't be decrefedBenjamin Peterson2012-02-061-1/+0
* | put returns on their own linesBenjamin Peterson2012-02-041-5/+10
* | ready types returned from PyType_FromSpecBenjamin Peterson2012-01-301-0/+3
* | adjust declarationBenjamin Peterson2012-01-301-1/+2
* | Issue #13848: open() and the FileIO constructor now check for NUL characters ...Antoine Pitrou2012-01-291-0/+13
* | Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa...Mark Dickinson2012-01-271-0/+5
* | Fix #13834: strip() strips leading and trailing whitespace.Georg Brandl2012-01-221-1/+1
* | Fix refleaks in test_capiAntoine Pitrou2012-01-181-3/+7
* | Fix leaking a RuntimeError objects when creating sub-interpretersAntoine Pitrou2012-01-181-21/+23
* | Consolidate the occurrances of the prime used as the multiplier when hashingGregory P. Smith2012-01-143-3/+3
* | fix possible if unlikely leakBenjamin Peterson2011-12-201-1/+5
* | Small clarification in docstring of dict.update(): the positional argument is...Georg Brandl2011-12-181-3/+3
* | Issue #11231: Fix bytes and bytearray docstringsVictor Stinner2011-12-172-10/+9
* | Fix the fix for issue #12149: it was incorrect, although it had the sideAntoine Pitrou2011-12-151-8/+10
* | Issue #13093: Fix error handling on PyUnicode_EncodeDecimal()Victor Stinner2011-11-221-6/+4
* | Issue #13333: The UTF-7 decoder now accepts lone surrogatesAntoine Pitrou2011-11-151-9/+5
* | Issue #13161: fix doc strings of __i*__ operatorsEli Bendersky2011-11-111-10/+10
* | Revert "Accept None as start and stop parameters for list.index() and tuple.i...Petri Lehtinen2011-11-062-22/+7
* | Accept None as start and stop parameters for list.index() and tuple.index()Petri Lehtinen2011-11-052-7/+22
* | remove unused variableBenjamin Peterson2011-10-301-1/+1
* | Fix the return value of set_discard (issue #10519)Petri Lehtinen2011-10-301-2/+3
* | Avoid unnecessary recursive function calls (closes #10519)Petri Lehtinen2011-10-301-2/+2
* | Issue #13018: Fix reference leaks in error paths in dictobject.c.Petri Lehtinen2011-10-241-4/+12
* | Issue 1294232: Fix errors in metaclass calculation affecting some cases of me...Nick Coghlan2011-10-231-20/+41
* | adjust braces a bitBenjamin Peterson2011-10-191-5/+4
* | Issue #13188: When called without an explicit traceback argument,Antoine Pitrou2011-10-181-0/+5
* | plug possible refleak (closes #13199)Benjamin Peterson2011-10-171-1/+5
* | Issue #12911: Fix memory consumption when calculating the repr() of huge tupl...Antoine Pitrou2011-10-063-85/+185
* | Issue #12973: Fix undefined-behaviour-inducing overflow check in list_repeat.Mark Dickinson2011-09-191-3/+3