Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement and apply PEP 322, reverse iteration | Raymond Hettinger | 2003-11-06 | 1 | -0/+1 |
| | |||||
* | Excise DL_EXPORT from Include. | Mark Hammond | 2002-08-12 | 1 | -1/+1 |
| | | | | Thanks to Skip Montanaro and Kalle Svensson for the patches. | ||||
* | - New builtin function enumerate(x), from PEP 279. Example: | Guido van Rossum | 2002-04-26 | 1 | -0/+16 |
enumerate("abc") is an iterator returning (0,"a"), (1,"b"), (2,"c"). The argument can be an arbitrary iterable object. |