summaryrefslogtreecommitdiff
path: root/Objects/listobject.c
Commit message (Expand)AuthorAgeFilesLines
* merge 3.3Benjamin Peterson2014-03-151-49/+57
|\
| * merge 3.3Benjamin Peterson2014-03-141-49/+57
| |\
| | * Make the various iterators' "setstate" sliently and consistently clip theKristj?n Valur J?nsson2014-03-051-49/+57
| | |\
| | | * Close #19578: Fix list_ass_subscript(), handle list_resize() failureVictor Stinner2013-11-211-2/+3
| | | * Add _PyUnicodeWriter_WriteASCIIString() functionVictor Stinner2013-11-191-8/+1
| | | * Issue #19513: Disable overallocation of the PyUnicodeWriter before the last w...Victor Stinner2013-11-191-0/+1
| | | * Issue #19513: Simplify list_repr()Victor Stinner2013-11-181-8/+2
| | | * Issue #19513: repr(list) now uses the PyUnicodeWriter API, it is faster thanVictor Stinner2013-11-181-16/+28
| | | * Issue #18722: Remove uses of the "register" keyword in C code.Antoine Pitrou2013-08-131-7/+7
| | | * Issue #18408: Fix list_ass_slice(), handle list_resize() failureVictor Stinner2013-07-191-3/+8
| | | * Issue #18408: Fix listpop(), handle list_ass_slice() failureVictor Stinner2013-07-171-6/+4
| | | * Issue #18408: Fix list.extend(), handle list_resize() failureVictor Stinner2013-07-161-2/+4
| | | * Issue #18408: Fix list.pop() to handle list_resize() failure (MemoryError).Victor Stinner2013-07-081-2/+4
| | | * Issue #9566: More long/Py_ssize_t fixes in tuple and list iterators (it_index)Victor Stinner2013-06-241-3/+3
| | | * Issue #16148: implemented PEP 424Armin Ronacher2012-10-061-1/+1
* | | | avoid referencing past the bounds of an arrayBenjamin Peterson2014-03-151-1/+1
|/ / /
* | | avoid referencing out-of-bounds memoryBenjamin Peterson2014-03-141-1/+1
|/ /
* | Make the various iterators' "setstate" sliently and consistently clip theKristj?n Valur J?nsson2014-03-051-0/+2
|/
* Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo...David Malcolm2012-06-221-0/+9
* Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in t...Antoine Pitrou2012-04-051-3/+3
* Issue #14288: Serialization support for builtin iterators.Kristj?n Valur J?nsson2012-04-031-0/+80
* Issue #14387: Do not include accu.h from Python.h.Antoine Pitrou2012-03-221-31/+41
|\
| * Issue #13389: Full garbage collection passes now clear the freelists forAntoine Pitrou2011-11-151-3/+10
| * Revert "Accept None as start and stop parameters for list.index() and tuple.i...Petri Lehtinen2011-11-061-28/+31
| |\
| | * Issue #13350: Replace most usages of PyUnicode_Format by PyUnicode_FromFormat.Amaury Forgeot d'Arc2011-11-061-16/+2
| | * Accept None as start and stop parameters for list.index() and tuple.index().Petri Lehtinen2011-11-051-3/+11
| | |\
| | * | Closes #12192: Document that mutating list methods do not return the instance...Georg Brandl2011-10-081-4/+4
| | * | Issue #12911: Fix memory consumption when calculating the repr() of huge tupl...Antoine Pitrou2011-10-061-8/+25
| | |\ \
| | | * | Issue #1621: Fix undefined behaviour from signed overflow in datetime module ...Mark Dickinson2011-09-251-3/+3
| | | * | Merge issue #12973 list_repeat fix.Mark Dickinson2011-09-191-3/+3
| | | |\ \
| | | * | | Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED.Brian Curtin2011-08-101-4/+2
| | | * | | #11565: Merge with 3.2.Ezio Melotti2011-03-161-1/+22
| | | |\ \ \
| | | | * | | #11335: Fix memory leak when a sort key function throws an exceptionDaniel Stutzbach2011-03-021-0/+2
| | | | * | | Issue #10516: adding list.clear() and list.copy() methodsEli Bendersky2011-02-251-1/+20
* | | | | | | Issue #14387: Do not include accu.h from Python.h.Antoine Pitrou2012-03-221-0/+1
|/ / / / / /
* | | | | | Revert "Accept None as start and stop parameters for list.index() and tuple.i...Petri Lehtinen2011-11-061-11/+3
| |_|_|_|/ |/| | | |
* | | | | Accept None as start and stop parameters for list.index() and tuple.index()Petri Lehtinen2011-11-051-3/+11
|/ / / /
* | | | Issue #12911: Fix memory consumption when calculating the repr() of huge tupl...Antoine Pitrou2011-10-061-46/+35
| |_|/ |/| |
* | | Issue #12973: Fix undefined-behaviour-inducing overflow check in list_repeat.Mark Dickinson2011-09-191-3/+3
* | | #11335: Fix memory leak after key function failure in sortDaniel Stutzbach2011-05-041-0/+2
|/ /
* | #11565: Merge with 3.1.Ezio Melotti2011-03-161-233/+265
|\ \ | |/
| * Issue #9566: use Py_ssize_t instead of intVictor Stinner2011-01-041-1/+1
| * Merge branches/pep-0384.Martin v. Löwis2010-12-031-2/+2
| * code styleBenjamin Peterson2010-12-031-5/+10
| * Issue9915: speeding up sorting with a keyDaniel Stutzbach2010-12-021-225/+238
| * Remove unneeded casts to hashfunc.Georg Brandl2010-10-181-1/+1
| * reorder and save a comparisonBenjamin Peterson2010-08-231-5/+5
| * Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-2117/+2117
| * Merged revisions 78515-78516,78522 via svnmerge fromEzio Melotti2010-03-011-2/+2
| * Merged revisions 78183-78184 via svnmerge fromMark Dickinson2010-02-141-7/+8