diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-06-11 02:21:25 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-06-11 02:21:25 (GMT) |
commit | fdc1e0d0137db999a320697a45b0a1fc5d48a8f8 (patch) | |
tree | fae6dab04a3631e4ac6a23326c73b4573a2cfcad | |
parent | 11bd81c2262a59c7ad938914d0a5c0189912a889 (diff) | |
download | cpython-fdc1e0d0137db999a320697a45b0a1fc5d48a8f8.zip cpython-fdc1e0d0137db999a320697a45b0a1fc5d48a8f8.tar.gz cpython-fdc1e0d0137db999a320697a45b0a1fc5d48a8f8.tar.bz2 |
Remove extra ] from itertools.count docstring.
-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 79385be..c6d92ea 100644 --- a/Modules/itertoolsmodule.c +++ b/Modules/itertoolsmodule.c @@ -3392,7 +3392,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\ |