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
*
Issue #1771: Remove cmp parameter from list.sort() and builtin.sorted().
Raymond Hettinger
2008-01-30
1
-190/+29
*
Merged revisions 60284-60349 via svnmerge from
Christian Heimes
2008-01-27
1
-6/+7
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes
2007-12-19
1
-82/+82
*
Merged revisions 59512-59540 via svnmerge from
Christian Heimes
2007-12-17
1
-5/+5
*
Merged revisions 59376-59406 via svnmerge from
Christian Heimes
2007-12-08
1
-11/+1
*
Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.
Martin v. Löwis
2007-12-04
1
-1/+5
*
Fix issue #1553: An errornous __length_hint__ can make list() raise a
Alexandre Vassalotti
2007-12-04
1
-2/+3
*
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...
Christian Heimes
2007-12-02
1
-5/+5
*
#1535: rename __builtin__ module to builtins.
Georg Brandl
2007-12-02
1
-1/+1
*
Added all PyTypeObjects to the appropriate header files.
Christian Heimes
2007-11-29
1
-8/+8
*
Added view and iterator types to collections / _abcoll
Christian Heimes
2007-11-28
1
-2/+2
*
Merged revisions 58221-58741 via svnmerge from
Guido van Rossum
2007-11-01
1
-4/+7
*
Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from
Thomas Wouters
2007-09-19
1
-0/+3
*
Remove the simple slicing API. All slicing is now done with slice objects.
Thomas Wouters
2007-08-30
1
-2/+2
*
Merge the trunk changes in. Breaks socket.ssl for now.
Thomas Wouters
2007-08-28
1
-13/+30
*
Use unicode and remove support for some uses of str8.
Neal Norwitz
2007-08-26
1
-2/+6
*
Convert a bunch of constant strings in C to unicode.
Neal Norwitz
2007-08-23
1
-2/+2
*
Kill all uses and definitions of tp_print under Objects/. (Others will follow.)
Guido van Rossum
2007-08-07
1
-28/+1
*
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis
2007-07-21
1
-92/+87
*
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
Walter Dörwald
2007-05-18
1
-8/+8
*
Merged revisions 53875-53911 via svnmerge from
Thomas Wouters
2007-02-25
1
-1/+1
*
Merged the int/long unification branch, by very crude means (sorry Thomas!).
Guido van Rossum
2007-01-14
1
-1/+1
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
1
-14/+17
*
Fix a bunch of compiler warnings. In at least one case these were serious bugs!
Guido van Rossum
2006-08-24
1
-1/+1
*
Restructure comparison dramatically. There is no longer a default
Guido van Rossum
2006-08-24
1
-1/+21
*
Merge current trunk into p3yk. This includes the PyNumber_Index API change,
Thomas Wouters
2006-08-21
1
-10/+15
*
Completely get rid of PyClass and PyInstance.
Guido van Rossum
2006-08-17
1
-8/+1
*
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters
2006-08-11
1
-1/+3
*
Get rid of most of the flags (in tp_flags) that keep track of various
Guido van Rossum
2006-07-27
1
-6/+3
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-99/+102
*
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
[next]