summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2009-09-25 16:10:55 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2009-09-25 16:10:55 (GMT)
commit8159c7aefd4f8b42ccf716a38fc73c3561a898e3 (patch)
treee7ee16021e55ceab4c6577bac03ef26f62d1f69c /Objects
parent98841abfcae324b4173cb11a98cfebfeabd58555 (diff)
downloadcpython-8159c7aefd4f8b42ccf716a38fc73c3561a898e3.zip
cpython-8159c7aefd4f8b42ccf716a38fc73c3561a898e3.tar.gz
cpython-8159c7aefd4f8b42ccf716a38fc73c3561a898e3.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')
-rw-r--r--Objects/enumobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/enumobject.c b/Objects/enumobject.c
index b1e412d..35864f6 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]), ...");