[issue8635] enumerate() docstring doesn't cover optional start argument

2010-05-22 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r81468 with a slightly different patch. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker __

[issue8635] enumerate() docstring doesn't cover optional start argument

2010-05-09 Thread Daniel Urban
Daniel Urban 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 ob

[issue8635] enumerate() docstring doesn't cover optional start argument

2010-05-06 Thread Nick Coghlan
New submission from Nick Coghlan : As noted in the comments for issue 2831, the enumerate docstring doesn't cover the feature added by that patch. -- components: Interpreter Core keywords: easy messages: 105144 nosy: ncoghlan priority: normal severity: normal stage: needs patch status: