[Python-checkins] r75055 - python/trunk/Objects/enumobject.c

ezio.melotti python-checkins at python.org
Fri Sep 25 18:07:55 CEST 2009


Author: ezio.melotti
Date: Fri Sep 25 18:07:55 2009
New Revision: 75055

Log:
#6994: fix typo in enumerate docstring

Modified:
   python/trunk/Objects/enumobject.c

Modified: python/trunk/Objects/enumobject.c
==============================================================================
--- python/trunk/Objects/enumobject.c	(original)
+++ python/trunk/Objects/enumobject.c	Fri Sep 25 18:07:55 2009
@@ -161,7 +161,7 @@
 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]), ...");


More information about the Python-checkins mailing list