COMMITS
/ Objects/tupleobject.c February 2, 2009
M
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson committed
January 11, 2009
B
Merged revisions 68381 via svnmerge from
Benjamin Peterson committed
October 11, 2008
B
merge from trunk
Benjamin Peterson committed
August 24, 2008
N
Closes release blocker #3627.
Neal Norwitz committed
June 17, 2008
May 3, 2008
A
Fixed a bug in the representation of self-referential tuples.
Alexandre Vassalotti committed
February 16, 2008
February 7, 2008
R
Issue 2025: Add index() and count() methods to tuple so that it will follow
Raymond Hettinger committed
February 6, 2008
December 19, 2007
C
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes committed
December 2, 2007
C
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h
Christian Heimes committed
November 29, 2007
C
Added all PyTypeObjects to the appropriate header files.
Christian Heimes committed
November 1, 2007
G
Merged revisions 58221-58741 via svnmerge from
Guido van Rossum committed
August 30, 2007
T
Remove the simple slicing API. All slicing is now done with slice objects.
Thomas Wouters committed
August 28, 2007
T
Merge the trunk changes in. Breaks socket.ssl for now.
Thomas Wouters committed
August 7, 2007
G
Kill all uses and definitions of tp_print under Objects/. (Others will follow.)
Guido van Rossum committed
July 21, 2007
M
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis committed
May 18, 2007
W
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
Walter Dörwald committed
February 25, 2007
T
Merged revisions 53875-53911 via svnmerge from
Thomas Wouters committed
December 13, 2006
T
Four months of trunk changes (including a few releases...)
Thomas Wouters committed
August 21, 2006
T
Merge current trunk into p3yk. This includes the PyNumber_Index API change,
Thomas Wouters committed
July 27, 2006
G
Get rid of most of the flags (in tp_flags) that keep track of various
Guido van Rossum committed
April 21, 2006
T
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters committed
March 7, 2006
G
Checking in the code for PEP 357.
Guido van Rossum committed
February 27, 2006
M
Revert backwards-incompatible const changes.
Martin v. Löwis committed
February 16, 2006
M
Use Py_ssize_t for counts and sizes.
Martin v. Löwis committed
February 15, 2006
M
Merge ssize_t branch.
Martin v. Löwis committed
February 11, 2006
A
Renamed _length_cue() to __length_hint__(). See:
Armin Rigo committed
December 10, 2005
J
Add const to several API functions that take char *.
Jeremy Hylton committed
September 24, 2005
R
Convert iterator __len__() methods to a private API.
Raymond Hettinger committed
June 10, 2004
R
Add a final permutation step to the tuple hash function.
Raymond Hettinger committed
June 4, 2004
R
Replaced arbitrary addend in tuple_hash with one that is known to generate
Raymond Hettinger committed
June 1, 2004
R
SF bug #942952: Weakness in tuple hash
Raymond Hettinger committed
March 21, 2004
A
Restored revision 2.87.
Armin Rigo committed
T
PyTuple_New(): vrbl i no longer referenced, so removed it (which kills
Tim Peters committed
A
This is the fastest I could get on Intel GCC. I kept the memset() in to clear
Armin Rigo committed
March 20, 2004
A
memset() hunt continuing. This is a net win.
Armin Rigo committed
March 18, 2004
R
Make iterators length transparent where possible.
Raymond Hettinger committed
March 15, 2004
R
Eliminate an unnecessary test on a common code path.
Raymond Hettinger committed
March 9, 2004
R
Optimize inner loops for subscript, repeat, and concat.
Raymond Hettinger committed
March 8, 2004
R
Optimize tuple_slice() and make further improvements to list_slice()
Raymond Hettinger committed
October 12, 2003
R
Extended tuple's C API to include a new function, PyTuple_Pack() that is
Raymond Hettinger committed
May 7, 2003
R
SF bug #730296: Unexpected Changes in list Iterator
Raymond Hettinger committed
April 24, 2003
T
Squashed new compiler wngs about trying to compare pointers to
Tim Peters committed
R
SF bug 665835: filter() treatment of str and tuple inconsistent
Raymond Hettinger committed
March 17, 2003
R
Renamed PyObject_GenericGetIter to PyObject_SelfIter
Raymond Hettinger committed
R
Created PyObject_GenericGetIter().
Raymond Hettinger committed
January 29, 2003
G
Implement appropriate __getnewargs__ for all immutable subclassable builtin
Guido van Rossum committed
October 11, 2002
G
Add checks for size overflow on list*n, list+list, tuple+tuple.
Guido van Rossum committed
September 5, 2002
N
PyObject_RichCompareBool() already returns -1, 0, or 1, so return its value
Neal Norwitz committed