COMMITS
/ Objects/rangeobject.c February 2, 2009
M
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson committed
February 1, 2009
M
Issue #1717, stage 2: remove uses of tp_compare in Modules and most
Mark Dickinson committed
June 10, 2008
A
Issue 2582: Fix pickling of range objects.
Alexandre Vassalotti committed
April 25, 2008
B
#2689 Fix indentation in Objects/rangeobject.c
Benjamin Peterson committed
February 9, 2008
R
Merge r60673
Raymond Hettinger committed
December 20, 2007
M
Drop _PyLong_FitsInLong. Fixes #1666.
Martin v. Löwis 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 28, 2007
C
Added view and iterator types to collections / _abcoll
Christian Heimes committed
November 15, 2007
A
Found another memory leak in longrangeiter. And redo the previous correction
Amaury Forgeot d'Arc committed
A
Correct a memory leak: the range() object was not properly freed.
Amaury Forgeot d'Arc committed
July 21, 2007
M
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis committed
May 21, 2007
W
Rename test_xrange.py to test_range.py and fix the
Walter Dörwald committed
W
repr(range(10)) now returns 'range(0, 10)' for clarity.
Walter Dörwald committed
May 20, 2007
W
Change range_repr() to use %R for the start/stop/step attributes.
Walter Dörwald committed
May 18, 2007
W
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
Walter Dörwald committed
May 8, 2007
G
Merged revisions 55180-55183 via svnmerge from
Guido van Rossum committed
May 7, 2007
G
Merged revisions 55007-55179 via svnmerge from
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
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
September 24, 2005
R
Convert iterator __len__() methods to a private API.
Raymond Hettinger committed
August 26, 2005
G
Disallow keyword arguments for type constructors that don't use them.
Georg Brandl committed
December 3, 2004
R
Remove PyRange_New().
Raymond Hettinger committed
August 8, 2004
T
Bug 1003935: xrange overflows
Tim Peters committed
T
Trimmed trailing whitespace.
Tim Peters committed
August 2, 2004
M
Add a missing decref.
Michael W. Hudson committed
March 10, 2004
R
Tidied up the implementations of reversed (including the custom ones
Raymond Hettinger committed
November 6, 2003
R
Implement and apply PEP 322, reverse iteration
Raymond Hettinger committed
March 17, 2003
R
Renamed PyObject_GenericGetIter to PyObject_SelfIter
Raymond Hettinger committed
R
Created PyObject_GenericGetIter().
Raymond Hettinger committed
December 11, 2002
R
Update comments about the performance of xrange().
Raymond Hettinger committed
November 7, 2002
R
Restore attribute access so that the following work again:
Raymond Hettinger committed
September 11, 2002
G
Untested code for 64-bit platforms. range_length() is declared as int
Guido van Rossum committed
July 17, 2002
J
staticforward bites the dust.
Jeremy Hylton committed
July 16, 2002
G
Remove the next() method -- one is supplied automatically by
Guido van Rossum committed
June 13, 2002
M
Patch #568124: Add doc string macros.
Martin v. Löwis committed
June 6, 2002
N
Pyrangeiter_Type && range_iter should be static
Neal Norwitz committed
June 5, 2002
R
Skip Montanaro's patch, SF 559833, exposing xrange type in builtins.
Raymond Hettinger committed
R
SF 564601 adding rangeiterobject to make xrange() iterate like range().
Raymond Hettinger committed
June 4, 2002
R
Inverted test for small speedup
Raymond Hettinger committed
May 8, 2002
M
Patch #551410: Implement tp_getiter.
Martin v. Löwis committed
May 2, 2002
F
Remove old deprecated features from the xrange object.
Fred Drake committed
F
Fix attribute access for the xrange objects. The tp_getattr and tp_getattro
Fred Drake committed
April 12, 2002
N
Remove PyMalloc_New and PyMalloc_Del.
Neil Schemenauer committed
March 22, 2002
N
Use pymalloc if it's enabled.
Neil Schemenauer committed
January 29, 2002
N
Fix spelling mistakes. Bugfix candidates.
Neal Norwitz committed
December 4, 2001
G
long_mul(): The PyNumber_Multiply() call can return a long if the
Guido van Rossum committed
August 24, 2001
B
repr's converted to using PyString_FromFormat() instead of sprintf'ing
Barry Warsaw committed
August 16, 2001
M
Patch #427190: Implement and use METH_NOARGS and METH_O.
Martin v. Löwis committed