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.
Created on 2010年05月06日 13:16 by ncoghlan, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| issue8635.diff | daniel.urban, 2010年05月09日 09:32 | Patch (py3k branch) | ||
| Messages (3) | |||
|---|---|---|---|
| msg105144 - (view) | Author: Alyssa Coghlan (ncoghlan) * (Python committer) | Date: 2010年05月06日 13:16 | |
As noted in the comments for issue 2831, the enumerate docstring doesn't cover the feature added by that patch. |
|||
| msg105377 - (view) | Author: Daniel Urban (daniel.urban) * (Python triager) | Date: 2010年05月09日 09:32 | |
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]), ..." |
|||
| msg106301 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2010年05月22日 11:43 | |
Thanks, fixed in r81468 with a slightly different patch. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:00 | admin | set | github: 52881 |
| 2010年05月22日 11:43:37 | georg.brandl | set | status: open -> closed nosy: + georg.brandl messages: + msg106301 resolution: fixed |
| 2010年05月09日 09:32:59 | daniel.urban | set | files:
+ issue8635.diff nosy: + daniel.urban messages: + msg105377 keywords: + patch |
| 2010年05月06日 13:16:03 | ncoghlan | create | |