summaryrefslogtreecommitdiffstats
path: root/Include/enumobject.h
Commit message (Collapse)AuthorAgeFilesLines
* Implement and apply PEP 322, reverse iterationRaymond Hettinger2003-11-061-0/+1
|
* Excise DL_EXPORT from Include.Mark Hammond2002-08-121-1/+1
| | | | Thanks to Skip Montanaro and Kalle Svensson for the patches.
* - New builtin function enumerate(x), from PEP 279. Example:Guido van Rossum2002-04-261-0/+16
enumerate("abc") is an iterator returning (0,"a"), (1,"b"), (2,"c"). The argument can be an arbitrary iterable object.