summaryrefslogtreecommitdiffstats
path: root/Objects/listobject.c
Commit message (Expand)AuthorAgeFilesLines
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-281-13/+30
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-2/+6
* Convert a bunch of constant strings in C to unicode.Neal Norwitz2007-08-231-2/+2
* Kill all uses and definitions of tp_print under Objects/. (Others will follow.)Guido van Rossum2007-08-071-28/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-92/+87
* Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirrorWalter Dörwald2007-05-181-8/+8
* Merged revisions 53875-53911 via svnmerge fromThomas Wouters2007-02-251-1/+1
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-14/+17
* Fix a bunch of compiler warnings. In at least one case these were serious bugs!Guido van Rossum2006-08-241-1/+1
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-1/+21
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-10/+15
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-171-8/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-1/+3
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-6/+3
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-99/+102
* Checking in the code for PEP 357.Guido van Rossum2006-03-071-10/+8
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-2/+2
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-4/+4
* Revert 42400.Martin v. Löwis2006-02-161-2/+2
* Support %zd in PyErr_Format and PyString_FromFormat.Martin v. Löwis2006-02-161-2/+1
* Get rid of compiler warnings (gcc 3.3.4 on x86)Neal Norwitz2006-02-161-2/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-138/+136
* Renamed _length_cue() to __length_hint__(). See:Armin Rigo2006-02-111-3/+3
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-2/+2
* Convert iterator __len__() methods to a private API.Raymond Hettinger2005-09-241-14/+11
* SF bug #1242657: list(obj) can swallow KeyboardInterruptRaymond Hettinger2005-08-211-0/+5
* Finalize the freelist of list objects.Raymond Hettinger2004-10-071-0/+13
* Checkin Tim's fix to an error discussed on python-dev.Raymond Hettinger2004-09-261-10/+20
* SF #1022910: Conserve memory with list.pop()Raymond Hettinger2004-09-121-8/+11
* Typo fix: 'comparisions' is not a wordAndrew M. Kuchling2004-09-101-1/+1
* SF patch #1005778, Fix seg fault if list object is modified during list.index()Neal Norwitz2004-08-131-3/+1
* Previous commit was viewed as "perverse". Changed to just cast the unusedBrett Cannon2004-08-081-1/+3
* Tweak previous patch to silence a warning about the unused left value in theBrett Cannon2004-08-031-1/+1
* list_ass_slice(): Document the obscure new intent that deleting a sliceTim Peters2004-07-311-8/+16
* list_ass_slice(): The difference between "recycle" and "recycled" wasTim Peters2004-07-311-17/+10
* Armin asked for a list_ass_slice review in his checkin, so here's theTim Peters2004-07-311-26/+44
* This is a reorganization of list_ass_slice(). It should probably be reviewed,Armin Rigo2004-07-301-22/+20
* What if you call lst.__init__() while it is being sorted? :-)Armin Rigo2004-07-301-2/+4
* * Simplify and speed-up list_resize(). Relying on the newly documentedRaymond Hettinger2004-07-291-3/+7
* * drop the unreasonable list invariant that ob_item should never come backArmin Rigo2004-07-291-28/+46
* Minor memory leak.Armin Rigo2004-07-291-0/+2
* Fix obscure breakage (relative to 2.3) in listsort: the test for listTim Peters2004-07-291-26/+12
* Trimmed trailing whitespace.Tim Peters2004-07-291-21/+21
* PyList_New(): we went to all the trouble of computing and bounds-checkingTim Peters2004-07-291-1/+2
* Moved SunPro warning suppression into pyport.h and out of individualNicholas Bastin2004-07-151-4/+0
* Fixed end-of-loop code not reached warning when using SunPro CNicholas Bastin2004-06-171-0/+4
* Nits:Raymond Hettinger2004-05-051-16/+9
* SF patch #947476: Apply freelist technique to listsRaymond Hettinger2004-05-051-4/+17
* Use Py_RETURN_NONE macro where applicable.Raymond Hettinger2004-04-121-14/+8