Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a3e61a4

Browse files
committed
Merged revisions 75057 via svnmerge from
svn+ssh://[email protected]/python/branches/py3k ................ r75057 | ezio.melotti | 2009-09-25 19:12:33 +0300 (Fri, 25 Sep 2009) | 9 lines Merged revisions 75055 via svnmerge from svn+ssh://[email protected]/python/trunk ........ r75055 | ezio.melotti | 2009-09-25 19:07:55 +0300 (Fri, 25 Sep 2009) | 1 line #6994: fix typo in enumerate docstring ........ ................
1 parent b0230b7 commit a3e61a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/enumobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ enum_next(enumobject *en)
161161
PyDoc_STRVAR(enum_doc,
162162
"enumerate(iterable) -> iterator for index, value of iterable\n"
163163
"\n"
164-
"Return an enumerate object. iterable must be an other object that supports\n"
164+
"Return an enumerate object. iterable must be another object that supports\n"
165165
"iteration. The enumerate object yields pairs containing a count (from\n"
166166
"zero) and a value yielded by the iterable argument. enumerate is useful\n"
167167
"for obtaining an indexed list: (0, seq[0]), (1, seq[1]), (2, seq[2]), ...");

0 commit comments

Comments
 (0)