summaryrefslogtreecommitdiffstats
path: root/Objects/listobject.c
Commit message (Expand)AuthorAgeFilesLines
* Support for the in-place operations introduced by augmented assignment. OnlyThomas Wouters2000-08-241-18/+88
* Added include for limits.hJack Jansen2000-08-221-0/+4
* Check for overflow in list object insertion and raise OverflowError.Trent Mick2000-08-131-0/+5
* Use 'void' directly instead of the ANY #define, now that all code is ANSI C.Thomas Wouters2000-07-251-2/+2
* Fix in PyList_New(). With GC enabled and when out of memory,Vladimir Marangozov2000-07-151-1/+1
* replace PyXXX_Length calls with PyXXX_Size callsJeremy Hylton2000-07-121-2/+2
* ANSI-fication of the sources.Fred Drake2000-07-091-125/+45
* Neil Schemenauer: small fixes for GCGuido van Rossum2000-07-011-0/+1
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* final patches from Neil Schemenauer for garbage collectionJeremy Hylton2000-06-301-3/+6
* part 2 of Neil Schemenauer's GC patches:Jeremy Hylton2000-06-231-5/+6
* Round 1 of Neil Schemenauer's GC patches:Jeremy Hylton2000-06-231-0/+29
* Patch from /F:Andrew M. Kuchling2000-06-181-21/+16
* Thomas Wouters <thomas@xs4all.net>:Fred Drake2000-06-151-0/+15
* Improve TypeError exception message for list catenation.Fred Drake2000-06-011-2/+2
* Michael Hudson <mwh21@cam.ac.uk>:Fred Drake2000-06-011-2/+6
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-9/+9
* add list_contains and tuplecontains: efficient implementations of tp_containsJeremy Hylton2000-04-271-0/+21
* Christian Tismer's "trashcan" patch:Guido van Rossum2000-03-131-0/+2
* Added Christian Tismer's patch to allow list.append(a,b,c) back --Guido van Rossum2000-03-131-4/+18
* OKOK, Greg's right, I should've used the :name option in the argumentGuido van Rossum2000-02-241-9/+9
* Made all list methods use PyArg_ParseTuple(), for more accurateGuido van Rossum2000-02-241-30/+29
* The rest of the changes by Trent Mick and Dale Nagata for warning-freeGuido van Rossum2000-01-201-1/+1
* When deallocating a list, DECREF the items from the end back to the start.Guido van Rossum1999-06-091-1/+6
* Improve text of some error messages, as suggested by Sean Reifschneider.Guido van Rossum1999-04-191-2/+3
* Jim Ahlstrom patch: cutoff should be a long for machines with 16-bitGuido van Rossum1999-01-141-1/+1
* listextend(): New method which implements L.extend(L2).Barry Warsaw1998-10-091-0/+74
* Remove a redundant check from list_slice() and list_ass_slice().Guido van Rossum1998-10-071-4/+0
* Added doc strings for methods and a new pop() method.Guido van Rossum1998-06-301-7/+54
* Minor cleanup by Tim after my changes:Guido van Rossum1998-06-171-25/+19
* Tim's latest, with some of my changes (also a TP suggestion) added:Guido van Rossum1998-06-161-218/+551
* Tim's revision of the previous patch. He also added some sparts toGuido van Rossum1998-05-291-43/+35
* Guard against changes in the list size during a compare or sort.Guido van Rossum1998-05-281-22/+31
* Tim's quicksort on May 25.Guido van Rossum1998-05-261-123/+141
* Tim's quicksort on May 13.Guido van Rossum1998-05-131-1/+1
* Tim's quicksort on May 10.Guido van Rossum1998-05-131-68/+99
* Get rid of the unused ifdefed-out old sort code.Guido van Rossum1998-04-281-76/+0
* Quicksort retuned by Tim Peters.Guido van Rossum1998-04-281-33/+26
* Use Py_Repr{Enter,Leave} to display recursive lists in finite space.Guido van Rossum1998-04-101-1/+20
* Add back some safeguards on the index elements that were lost in theGuido van Rossum1998-02-251-2/+2
* Modified quicksort by Raymund Galvin, after studying the GNU libg++Guido van Rossum1997-12-101-23/+48
* Rename roundup() to roundupsize(), as there's a macro roundup() in theGuido van Rossum1997-08-251-2/+2
* Reordered list of methods to hopefully put the most frequently usedGuido van Rossum1997-07-131-3/+3
* PyObject_Compare can raise an exception now.Guido van Rossum1997-05-231-3/+12
* Quickly renamed the last directory.Guido van Rossum1997-05-021-288/+295
* Tweaks to keep the Microsoft compiler quiet.Guido van Rossum1997-04-091-1/+1
* Add casts to CMPERROR macro to silence SunPro compiler warnings aboutGuido van Rossum1997-03-051-1/+1
* Change comment about MINSIZE -- 10 is optimal for Python.Guido van Rossum1996-12-161-3/+6
* Some more tuning of quicksort: use pointers instead of indexing.Guido van Rossum1996-12-111-54/+60