summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-07-06 19:36:48 (GMT)
committerGeorg Brandl <georg@python.org>2012-07-06 19:36:48 (GMT)
commit5356af8c489d6760f4ad7d88f1178d3820d09999 (patch)
tree14e6116e9bc9ab362e8a87fa0ebb142b390a58cf /Doc
parentc2ec99269899f33d9c658b0291e46961f58cc410 (diff)
downloadcpython-5356af8c489d6760f4ad7d88f1178d3820d09999.zip
cpython-5356af8c489d6760f4ad7d88f1178d3820d09999.tar.gz
cpython-5356af8c489d6760f4ad7d88f1178d3820d09999.tar.bz2
Fix leftover quote.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/itertools.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst
index 36aaa7b..c144b3e 100644
--- a/Doc/library/itertools.rst
+++ b/Doc/library/itertools.rst
@@ -734,7 +734,7 @@ which incur interpreter overhead.
def grouper(n, iterable, fillvalue=None):
"Collect data into fixed-length chunks or blocks"
- # grouper(3, 'ABCDEFG', 'x') --> ABC DEF Gxx"
+ # grouper(3, 'ABCDEFG', 'x') --> ABC DEF Gxx
args = [iter(iterable)] * n
return izip_longest(fillvalue=fillvalue, *args)