From: Andrew M. Kuchling Date: Mon, 14 Apr 2003 15:31:27 +0000 (+0000) Subject: Fix docstring typo X-Git-Tag: v2.3c1~1200 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dff694bb9de271ae9b140ab35abb6f16e446e6e8;p=python Fix docstring typo --- diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index 618649048c..35fa1d07da 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -1766,7 +1766,7 @@ PyDoc_STRVAR(module_doc, Infinite iterators:\n\ count([n]) --> n, n+1, n+2, ...\n\ cycle(p) --> p0, p1, ... plast, p0, p1, ...\n\ -repeat(elem [,n]) --> elem, elem, elem, ... endlessly or upto n times\n\ +repeat(elem [,n]) --> elem, elem, elem, ... endlessly or up to n times\n\ \n\ Iterators terminating on the shortest input sequence:\n\ izip(p, q, ...) --> (p[0], q[0]), (p[1], q[1]), ... \n\