index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
/
listobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Checking in the code for PEP 357.
Guido van Rossum
2006-03-07
1
-10/+8
*
Revert backwards-incompatible const changes.
Martin v. Löwis
2006-02-27
1
-2/+2
*
Use Py_ssize_t for counts and sizes.
Martin v. Löwis
2006-02-16
1
-4/+4
*
Revert 42400.
Martin v. Löwis
2006-02-16
1
-2/+2
*
Support %zd in PyErr_Format and PyString_FromFormat.
Martin v. Löwis
2006-02-16
1
-2/+1
*
Get rid of compiler warnings (gcc 3.3.4 on x86)
Neal Norwitz
2006-02-16
1
-2/+2
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-138/+136
*
Renamed _length_cue() to __length_hint__(). See:
Armin Rigo
2006-02-11
1
-3/+3
*
Add const to several API functions that take char *.
Jeremy Hylton
2005-12-10
1
-2/+2
*
Convert iterator __len__() methods to a private API.
Raymond Hettinger
2005-09-24
1
-14/+11
*
SF bug #1242657: list(obj) can swallow KeyboardInterrupt
Raymond Hettinger
2005-08-21
1
-0/+5
*
Finalize the freelist of list objects.
Raymond Hettinger
2004-10-07
1
-0/+13
*
Checkin Tim's fix to an error discussed on python-dev.
Raymond Hettinger
2004-09-26
1
-10/+20
*
SF #1022910: Conserve memory with list.pop()
Raymond Hettinger
2004-09-12
1
-8/+11
*
Typo fix: 'comparisions' is not a word
Andrew M. Kuchling
2004-09-10
1
-1/+1
*
SF patch #1005778, Fix seg fault if list object is modified during list.index()
Neal Norwitz
2004-08-13
1
-3/+1
*
Previous commit was viewed as "perverse". Changed to just cast the unused
Brett Cannon
2004-08-08
1
-1/+3
*
Tweak previous patch to silence a warning about the unused left value in the
Brett Cannon
2004-08-03
1
-1/+1
*
list_ass_slice(): Document the obscure new intent that deleting a slice
Tim Peters
2004-07-31
1
-8/+16
*
list_ass_slice(): The difference between "recycle" and "recycled" was
Tim Peters
2004-07-31
1
-17/+10
*
Armin asked for a list_ass_slice review in his checkin, so here's the
Tim Peters
2004-07-31
1
-26/+44
*
This is a reorganization of list_ass_slice(). It should probably be reviewed,
Armin Rigo
2004-07-30
1
-22/+20
*
What if you call lst.__init__() while it is being sorted? :-)
Armin Rigo
2004-07-30
1
-2/+4
*
* Simplify and speed-up list_resize(). Relying on the newly documented
Raymond Hettinger
2004-07-29
1
-3/+7
*
* drop the unreasonable list invariant that ob_item should never come back
Armin Rigo
2004-07-29
1
-28/+46
*
Minor memory leak.
Armin Rigo
2004-07-29
1
-0/+2
*
Fix obscure breakage (relative to 2.3) in listsort: the test for list
Tim Peters
2004-07-29
1
-26/+12
*
Trimmed trailing whitespace.
Tim Peters
2004-07-29
1
-21/+21
*
PyList_New(): we went to all the trouble of computing and bounds-checking
Tim Peters
2004-07-29
1
-1/+2
*
Moved SunPro warning suppression into pyport.h and out of individual
Nicholas Bastin
2004-07-15
1
-4/+0
*
Fixed end-of-loop code not reached warning when using SunPro C
Nicholas Bastin
2004-06-17
1
-0/+4
*
Nits:
Raymond Hettinger
2004-05-05
1
-16/+9
*
SF patch #947476: Apply freelist technique to lists
Raymond Hettinger
2004-05-05
1
-4/+17
*
Use Py_RETURN_NONE macro where applicable.
Raymond Hettinger
2004-04-12
1
-14/+8
*
Small refactoring saving one function() and eliminating some indirection.
Raymond Hettinger
2004-04-12
1
-11/+10
*
* Specialize ins1() into app1() for appends. Saves several unnecessary
Raymond Hettinger
2004-04-12
1
-6/+36
*
Get rid of listextend_internal() and explain why the special case
Armin Rigo
2004-03-20
1
-51/+25
*
Make iterators length transparent where possible.
Raymond Hettinger
2004-03-18
1
-1/+14
*
Revert last change. Found an application that was worse off with resize
Raymond Hettinger
2004-03-15
1
-13/+10
*
list_resize() now has an "exact" option for bypassing the overallocation
Raymond Hettinger
2004-03-14
1
-10/+13
*
Make PySequence_Fast_ITEMS public. (Thanks Skip.)
Raymond Hettinger
2004-03-12
1
-3/+3
*
* Eliminate duplicate call to PyObject_Size().
Raymond Hettinger
2004-03-12
1
-3/+3
*
Use a new macro, PySequence_Fast_ITEMS to factor out code common to
Raymond Hettinger
2004-03-12
1
-16/+3
*
Now that list.extend() is at the root of many list operations, it becomes
Raymond Hettinger
2004-03-11
1
-3/+9
*
Eliminate a big block of duplicate code in PySequence_List() by
Raymond Hettinger
2004-03-11
1
-0/+6
*
list_inplace_concat() is now expressed in terms of list_extend() which
Raymond Hettinger
2004-03-11
1
-14/+13
*
Use memcpy() instead of memmove() when the buffers are known to be distinct.
Raymond Hettinger
2004-03-10
1
-2/+2
*
Tidied up the implementations of reversed (including the custom ones
Raymond Hettinger
2004-03-10
1
-9/+23
*
Optimize inner loops for subscript, repeat, and concat.
Raymond Hettinger
2004-03-09
1
-27/+39
*
Optimize slice assignments.
Raymond Hettinger
2004-03-09
1
-16/+17
[prev]
[next]