diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2009-09-25 16:12:33 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2009-09-25 16:12:33 (GMT) |
commit | ed61093277b3e987f9856e8a04498ce103362ff6 (patch) | |
tree | a830c90b537eed0fff186c804f0364fbff910ffc /Objects/enumobject.c | |
parent | 418f81d9b65ca2c7942ff9c422ad01d5050a808f (diff) | |
download | cpython-ed61093277b3e987f9856e8a04498ce103362ff6.zip cpython-ed61093277b3e987f9856e8a04498ce103362ff6.tar.gz cpython-ed61093277b3e987f9856e8a04498ce103362ff6.tar.bz2 |
Merged revisions 75055 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75055 | ezio.melotti | 2009-09-25 19:07:55 +0300 (Fri, 25 Sep 2009) | 1 line
#6994: fix typo in enumerate docstring
........
Diffstat (limited to 'Objects/enumobject.c')
-rw-r--r-- | Objects/enumobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/enumobject.c b/Objects/enumobject.c index 62e55bb..3d9bfad 100644 --- a/Objects/enumobject.c +++ b/Objects/enumobject.c @@ -161,7 +161,7 @@ enum_next(enumobject *en) PyDoc_STRVAR(enum_doc, "enumerate(iterable) -> iterator for index, value of iterable\n" "\n" -"Return an enumerate object. iterable must be an other object that supports\n" +"Return an enumerate object. iterable must be another object that supports\n" "iteration. The enumerate object yields pairs containing a count (from\n" "zero) and a value yielded by the iterable argument. enumerate is useful\n" "for obtaining an indexed list: (0, seq[0]), (1, seq[1]), (2, seq[2]), ..."); |