Daniel Urban <urban.dani...@gmail.com> added the comment: 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]), ..." ---------- keywords: +patch nosy: +durban Added file: http://bugs.python.org/file17271/issue8635.diff _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue8635> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com