COMMITS
/ Objects/rangeobject.c 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
August 2, 2001
T
Merge of descr-branch back into trunk.
Tim Peters committed
July 9, 2001
T
Re-add 'advanced' xrange features, adding DeprecationWarnings as discussed
Thomas Wouters committed
July 5, 2001
G
Rip out the fancy behaviors of xrange that nobody uses: repeat, slice,
Guido van Rossum committed
January 15, 2001
G
SF patch #103158 by Greg Ball: Don't do unsafe arithmetic in xrange
Guido van Rossum committed
December 14, 2000
G
Test for NULL returned from PyObject_NEW().
Guido van Rossum committed
November 8, 2000
F
Fixed support for containment test when a negative step is used; this
Fred Drake committed
F
In the containment test, get the boundary condition right. ">" was used
Fred Drake committed
September 1, 2000
G
REMOVED all CWI, CNRI and BeOpen copyright markings.
Guido van Rossum committed
August 4, 2000
T
Boost buffer sizes in the absence of snprintf on Windows.
Tim Peters committed
F
snprintf() is not portable, so continue to use sprintf() until a portable
Fred Drake committed
August 3, 2000
F
Remove the tp_print handler.
Fred Drake committed