Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove the next() method -- one is supplied automatically by | Guido van Rossum | 2002-07-16 | 1 | -16/+11 |
| | | | | | | | | PyType_Ready() because the tp_iternext slot is set (fortunately, because using the tp_iternext implementation for the the next() implementation is buggy). Also changed the allocation order in enum_next() so that the underlying iterator is only moved ahead when we have successfully allocated the result tuple and index. | ||||
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -2/+2 |
| | |||||
* | - New builtin function enumerate(x), from PEP 279. Example: | Guido van Rossum | 2002-04-26 | 1 | -0/+139 |
enumerate("abc") is an iterator returning (0,"a"), (1,"b"), (2,"c"). The argument can be an arbitrary iterable object. |