diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-06-11 02:26:42 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-06-11 02:26:42 (GMT) |
commit | bfd73faf86cc0dc82754372d96318f95c43170c5 (patch) | |
tree | 692690bd200a692cb2ed615c6a0d8401805837c8 /Modules | |
parent | 1286d7f0601466db10d90d94840e741e4f85c065 (diff) | |
download | cpython-bfd73faf86cc0dc82754372d96318f95c43170c5.zip cpython-bfd73faf86cc0dc82754372d96318f95c43170c5.tar.gz cpython-bfd73faf86cc0dc82754372d96318f95c43170c5.tar.bz2 |
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.
........
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 ad95047..ba8d6df 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\ |