Remove extra ] from itertools.count docstring.

This commit is contained in:
Ezio Melotti 2010-06-11 02:21:25 +00:00
parent 11bd81c226
commit fdc1e0d013
1 changed files with 1 additions and 1 deletions

View File

@ -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\