COMMITS
/ Objects/enumobject.c September 24, 2005
R
Convert iterator __len__() methods to a private API.
Raymond Hettinger committed
September 1, 2004
R
SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes
Raymond Hettinger committed
August 25, 2004
R
Fix docstring typo.
Raymond Hettinger committed
April 12, 2004
R
* Add unittests for iterators that report their length
Raymond Hettinger committed
March 10, 2004
R
Tidied up the implementations of reversed (including the custom ones
Raymond Hettinger committed
R
Eliminate the double reverse option. It's only use case
Raymond Hettinger committed
February 10, 2004
R
Make reversed() transparent with respect to length.
Raymond Hettinger committed
February 8, 2004
R
Let reversed() work with itself.
Raymond Hettinger committed
February 7, 2004
R
* Fix ref counting in extend() and extendleft().
Raymond Hettinger committed
November 7, 2003
R
Optimize reversed(list) using a custom iterator.
Raymond Hettinger committed
November 6, 2003
R
Implement and apply PEP 322, reverse iteration
Raymond Hettinger committed
November 2, 2003
R
Use PyTuple_Pack() to simplify enumerate().
Raymond Hettinger committed
May 28, 2003
R
* Beefed-up tests
Raymond Hettinger committed
April 21, 2003
J
Add a useful docstring to enumerate.
Jeremy Hylton committed
March 17, 2003
R
Renamed PyObject_GenericGetIter to PyObject_SelfIter
Raymond Hettinger committed
R
Created PyObject_GenericGetIter().
Raymond Hettinger 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
April 26, 2002
G
- New builtin function enumerate(x), from PEP 279. Example:
Guido van Rossum committed