summaryrefslogtreecommitdiffstats
path: root/Objects/listobject.c
Commit message (Expand)AuthorAgeFilesLines
* Expand the PySlice_GetIndicesEx macro. (#1023)Serhiy Storchaka2017-04-081-4/+6
* bpo-29748: Added the slice index converter in Argument Clinic. (#549)Serhiy Storchaka2017-03-191-3/+3
* bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485)Serhiy Storchaka2017-03-121-2/+2
* bpo-20185: Convert list object implementation to Argument Clinic. (#542)Serhiy Storchaka2017-03-111-150/+223
* bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() an...Serhiy Storchaka2017-03-061-8/+3
* bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486)Serhiy Storchaka2017-03-051-0/+6
* bpo-27660: remove unnecessary overflow checks in list_resize (GH-189)Xiang Zhang2017-02-221-12/+7
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-4/+2
* Issue #29331: Simplified argument parsing in sorted() and list.sort().Serhiy Storchaka2017-01-211-15/+15
* Issue #1621: Overflow should not be possible in listextend()Martin Panter2017-01-141-0/+3
* Backed out changeset b9c9691c72c5Victor Stinner2016-12-041-1/+2
* Replace PyObject_CallFunctionObjArgs() with fastcallVictor Stinner2016-12-011-2/+1
* replace PY_SIZE_MAX with SIZE_MAXBenjamin Peterson2016-09-071-2/+2
* merge 3.5Benjamin Peterson2016-09-071-6/+9
|\
| * make sure to not call memcpy with a NULL second argumentBenjamin Peterson2016-09-071-6/+9
* | Issue #27662: don't use PY_SIZE_MAX for overflow checking in List_New. Patch ...Mark Dickinson2016-08-211-11/+1
* | Issue #1621: Avoid signed overflow in list and tuple operationsMartin Panter2016-07-251-8/+10
* | Issue #23034: The output of a special Python build with defined COUNT_ALLOCS,Serhiy Storchaka2016-07-031-0/+10
* | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-1/+1
|\ \ | |/
* | Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-2/+2
|\ \ | |/
* | Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-7/+13
|\ \ | |/
| * Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-7/+13
* | Tests versus zero are more compact than tests versus -1.Raymond Hettinger2016-01-251-6/+6
* | Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR.Serhiy Storchaka2015-12-271-8/+2
|/
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-191-1/+1
* merge 3.4 (#24044)Benjamin Peterson2015-04-231-2/+4
|\
| * merge 3.3 (#24044)Benjamin Peterson2015-04-231-2/+4
| |\
| | * merge 3.2 (#24044)Benjamin Peterson2015-04-231-2/+4
| | |\
| | | * properly handle malloc failure (closes #24044)Benjamin Peterson2015-04-231-2/+4
* | | | merge 3.4 (#23515)Benjamin Peterson2015-02-251-1/+2
|\ \ \ \ | |/ / /
| * | | fix merge_collapse to actually maintain the invariant it purports to (closes ...Benjamin Peterson2015-02-251-1/+2
* | | | Issue #22077: Improve index error messages for bytearrays, bytes, lists, andTerry Jan Reedy2014-08-021-2/+2
|/ / /
* | | merge 3.3Benjamin Peterson2014-03-151-1/+1
|\ \ \ | |/ /
| * | avoid referencing past the bounds of an arrayBenjamin Peterson2014-03-151-1/+1
* | | merge 3.3Benjamin Peterson2014-03-151-1/+1
|\ \ \ | |/ /
| * | avoid referencing out-of-bounds memoryBenjamin Peterson2014-03-151-1/+1
* | | Make the various iterators' "setstate" sliently and consistently clip theKristján Valur Jónsson2014-03-051-0/+2
|\ \ \ | |/ /
| * | Make the various iterators' "setstate" sliently and consistently clip theKristján Valur Jónsson2014-03-051-0/+2
* | | 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
|/ /