Message285916
The application of AC to enumerate() lost information about the start argument and the signature of the call. We're going backwards.
---- New help -----------------------------------------------------
class enumerate(object)
| Return an enumerate object.
|
| iterable
| an object supporting iteration
|
| The enumerate object yields pairs containing a count (from start, which
| defaults to zero) and a value yielded by the iterable argument.
|
| enumerate is useful for obtaining an indexed list:
| (0, seq[0]), (1, seq[1]), (2, seq[2]), ...
---- Old help -----------------------------------------------------
class enumerate(object)
| enumerate(iterable[, start]) -> iterator for index, value of iterable
|
| Return an enumerate object. iterable must be another object that supports
| iteration. The enumerate object yields pairs containing a count (from
| start, which defaults to zero) and a value yielded by the iterable argument.
| enumerate is useful for obtaining an indexed list:
| (0, seq[0]), (1, seq[1]), (2, seq[2]), ...
Also, reversed() lost the indication of its signature:
reversed(sequence) -> reverse iterator over values of the sequence
And the help doesn't have the usual:
iterable
| an object supporting iteration |
|
Date |
User |
Action |
Args |
2017-01-20 17:07:37 | rhettinger | set | recipients:
+ rhettinger, georg.brandl, taleinat, larry, python-dev, martin.panter, serhiy.storchaka |
2017-01-20 17:07:37 | rhettinger | set | messageid: <1484932057.81.0.23608103108.issue20186@psf.upfronthosting.co.za> |
2017-01-20 17:07:37 | rhettinger | link | issue20186 messages |
2017-01-20 17:07:37 | rhettinger | create | |
|