This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vy0123
Recipients docs@python, vy0123
Date 2014-10-25.03:43:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1414208636.74.0.462392063973.issue22725@psf.upfronthosting.co.za>
In-reply-to
Content
The existing documentation is confusing. 

— improve wording as follows

enumerate(sequence, start=0)

Returns pairings of index into sequence[link to glossary.html#term-sequence] with the object at that index in the sequence.

— wording as found in v.2.7.5

enumerate(sequence, start=0)

Return an enumerate object. sequence must be a sequence, an iterator, or some other object which supports iteration. The next() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over sequence:
History
Date User Action Args
2014-10-25 03:43:56vy0123setrecipients: + vy0123, docs@python
2014-10-25 03:43:56vy0123setmessageid: <1414208636.74.0.462392063973.issue22725@psf.upfronthosting.co.za>
2014-10-25 03:43:56vy0123linkissue22725 messages
2014-10-25 03:43:55vy0123create