[Python-checkins] r75058 - in python/branches/release31-maint: Objects/enumobject.c

ezio.melotti python-checkins at python.org
Fri Sep 25 18:14:31 CEST 2009


Author: ezio.melotti
Date: Fri Sep 25 18:14:31 2009
New Revision: 75058

Log:
Merged revisions 75057 via svnmerge from 
svn+ssh://pythondev@svn.python.org/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://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
  ........
................


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Objects/enumobject.c

Modified: python/branches/release31-maint/Objects/enumobject.c
==============================================================================
--- python/branches/release31-maint/Objects/enumobject.c	(original)
+++ python/branches/release31-maint/Objects/enumobject.c	Fri Sep 25 18:14:31 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