From: Georg Brandl Date: Fri, 6 Jul 2012 19:36:48 +0000 (+0200) Subject: Fix leftover quote. X-Git-Tag: v2.7.4rc1~714 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5356af8c489d6760f4ad7d88f1178d3820d09999;p=thirdparty%2FPython%2Fcpython.git Fix leftover quote. --- diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 36aaa7bbbb04..c144b3e880f9 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)