]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix leftover quote.
authorGeorg Brandl <georg@python.org>
Fri, 6 Jul 2012 19:36:48 +0000 (21:36 +0200)
committerGeorg Brandl <georg@python.org>
Fri, 6 Jul 2012 19:36:48 +0000 (21:36 +0200)
Doc/library/itertools.rst

index 36aaa7bbbb048a3fc0186f8cd5f5e56d518b4d85..c144b3e880f96bf27bdd62be621404a13d914b40 100644 (file)
@@ -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)