summaryrefslogtreecommitdiff
path: root/Objects/listobject.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-32137: The repr of deeply nested dict now raises a RuntimeError (GH...Serhiy Storchaka2018-02-021-3/+0
* bpo-30074: Fix compile warnings of _PySlice_Unpack and convert missed (#1154)Serhiy Storchaka2017-04-151-2/+2
* bpo-27867: Expand the PySlice_GetIndicesEx macro. (#1023) (#1046)Serhiy Storchaka2017-04-081-4/+6
* bpo-29935: Fixed error messages in the index() method of tuple and list (#887...Serhiy Storchaka2017-03-301-2/+2
* make sure to not call memcpy with a NULL second argumentBenjamin Peterson2016-09-061-6/+9
* Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-7/+13
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-191-1/+1
* fix merge_collapse to actually maintain the invariant it purports to (closes ...Benjamin Peterson2015-02-251-1/+2
* 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
* Backport issue #12973 list_repeat fix from 3.x.Mark Dickinson2011-09-191-3/+3
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-2249/+2249
* #8030: more docstring fix for builtin types.Ezio Melotti2010-02-281-1/+1
* #8030: make builtin type docstrings more consistent: use "iterable" instead o...Georg Brandl2010-02-281-1/+1
* Silence some 'comparison between signed and unsigned' compiler warnings.Mark Dickinson2010-02-141-7/+8
* Issue #7788: Fix a crash produced by deleting a list slice with hugeMark Dickinson2010-01-291-1/+2
* grant list.index() a more informative error message #7252Benjamin Peterson2009-11-021-2/+16
* prevent a rather unlikely segfaultBenjamin Peterson2009-11-021-2/+8
* Issue #7084: Fix a (very unlikely) crash when printing a list from oneAntoine Pitrou2009-10-111-1/+6
* Issue 1242657: list(obj) can swallow KeyboardInterrupt.Raymond Hettinger2009-02-021-0/+4
* Backport r67478Raymond Hettinger2008-12-031-8/+9
* Docstring changes: Specify exceptions raisedAndrew M. Kuchling2008-10-041-3/+6
* Issue 2235: __hash__ is once again inherited by default, but inheritance can ...Nick Coghlan2008-07-151-1/+1
* Merge in release25-maint r60793:Gregory P. Smith2008-06-111-3/+19
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-10/+10
* Some style nits. Also clarify in the docstrings what __sizeof__ does.Georg Brandl2008-06-011-1/+1
* Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes.Robert Schuppenies2008-06-011-0/+12
* Renamed PyString to PyBytesChristian Heimes2008-05-261-10/+10
* A little reformating of Py3k warningsBenjamin Peterson2008-04-271-1/+1
* Use PyErr_WarnPy3k throughoutBenjamin Peterson2008-04-271-3/+1
* Make Py3k warnings consistent w.r.t. punctuation; also respect theGeorg Brandl2008-03-251-1/+1
* Issue 2354: Fix-up compare warning. Patch contributed by Jeff Balogh.Raymond Hettinger2008-03-191-1/+1
* Issue: 2354: Add 3K warning for the cmp argument to list.sort() and sorted().Raymond Hettinger2008-03-181-0/+5
* Use PY_FORMAT_SIZE_T instead of z for string formatting. Thanks Neal.Christian Heimes2008-02-241-2/+4
* Use prefix decrementChristian Heimes2008-02-081-2/+1
* Added some statistics code to dict and list object code. I wanted to test how...Christian Heimes2008-02-071-0/+29
* Unified naming convention for free lists and their limits. All free listsChristian Heimes2008-02-061-11/+13
* Use the right (portable) definition of the max of a Py_ssize_t.Thomas Wouters2008-01-251-1/+1
* Rewrite the list_inline_repeat overflow check slightly differently.Guido van Rossum2008-01-251-6/+7
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-83/+83
* Optimize PyList_AsTuple(). Improve cache performance by doing theRaymond Hettinger2007-12-151-5/+5
* Fix Issue 1045.Raymond Hettinger2007-12-061-11/+1
* merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ ...Christian Heimes2007-12-051-2/+3
* Backport of _abccoll.py by Benjamin Arangueren, issue 1383.Guido van Rossum2007-11-221-9/+1
* Fix the overflow checking of list_repeat.Armin Rigo2007-10-171-4/+7
* Add a bunch of GIL release/acquire points in tp_print implementations and forBrett Cannon2007-09-171-1/+10
* Fix a possible segfault from recursing too deep to get the repr of a list.Brett Cannon2007-09-101-0/+3
* Improve extended slicing support in builtin types and classes. Specifically:Thomas Wouters2007-08-281-13/+30
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-92/+87