From 7a61e3c3599cdd1ae72d33f9d4343ee60ffddb61 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Fri, 11 Jun 2010 02:28:37 +0000 Subject: [PATCH] Merged revisions 81891 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r81891 | ezio.melotti | 2010-06-11 05:26:42 +0300 (Fri, 11 Jun 2010) | 9 lines Merged revisions 81889 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r81889 | ezio.melotti | 2010-06-11 05:21:25 +0300 (Fri, 11 Jun 2010) | 1 line Remove extra ] from itertools.count docstring. ........ ................ --- Modules/itertoolsmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index ad9504703a..ba8d6dfde3 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -3066,7 +3066,7 @@ static PyMethodDef count_methods[] = { }; PyDoc_STRVAR(count_doc, - "count(start=0, step=1]) --> count object\n\ + "count(start=0, step=1) --> count object\n\ \n\ Return a count object whose .__next__() method returns consecutive values.\n\ Equivalent to:\n\n\ -- 2.40.0