Fix leftover quote.

This commit is contained in:
Georg Brandl 2012-07-06 21:36:48 +02:00
parent c2ec992698
commit 5356af8c48
1 changed files with 1 additions and 1 deletions

View 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)