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 daniel.urban
Recipients daniel.urban, ncoghlan
Date 2010-05-09.09:32:57
SpamBayes Score 0.0005013953
Marked as misclassified No
Message-id <1273397581.31.0.27732017445.issue8635@psf.upfronthosting.co.za>
In-reply-to
Content
Attached a patch. It changes the docstring to:
"enumerate(iterable[, start]) -> iterator for index, value of iterable

Return an enumerate object.  iterable must be another object that supports
iteration, start must be an integer (defaults to 0).  The enumerate object
yields pairs containing a count (from start) 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]), ..."
History
Date User Action Args
2010-05-09 09:33:01daniel.urbansetrecipients: + daniel.urban, ncoghlan
2010-05-09 09:33:01daniel.urbansetmessageid: <1273397581.31.0.27732017445.issue8635@psf.upfronthosting.co.za>
2010-05-09 09:32:59daniel.urbanlinkissue8635 messages
2010-05-09 09:32:58daniel.urbancreate