diff options
author | Andrew Kuchling <amk@amk.ca> | 2013-06-21 12:07:35 (GMT) |
---|---|---|
committer | Andrew Kuchling <amk@amk.ca> | 2013-06-21 12:07:35 (GMT) |
commit | 3468d25a80b6d080b2a90d596ba4c3f6c2618d39 (patch) | |
tree | 15676b1328670cd87883f4c39f64bd29c1a60375 /Modules | |
parent | 5e03e49c94f0ad14c3e0bc6329b03d91eff52b1b (diff) | |
parent | edb4260ffdda734ec028d56f4eb2006890c35f4c (diff) | |
download | cpython-3468d25a80b6d080b2a90d596ba4c3f6c2618d39.zip cpython-3468d25a80b6d080b2a90d596ba4c3f6c2618d39.tar.gz cpython-3468d25a80b6d080b2a90d596ba4c3f6c2618d39.tar.bz2 |
Merge from 3.3
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/itertoolsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/itertoolsmodule.c b/Modules/itertoolsmodule.c index 644104e..401c684 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -4452,7 +4452,7 @@ PyDoc_STRVAR(module_doc, "Functional tools for creating and using iterators.\n\ \n\ Infinite iterators:\n\ -count([n]) --> n, n+1, n+2, ...\n\ +count(start=0, step=1) --> start, start+step, start+2*step, ...\n\ cycle(p) --> p0, p1, ... plast, p0, p1, ...\n\ repeat(elem [,n]) --> elem, elem, elem, ... endlessly or up to n times\n\ \n\ |