Fix leftover quote.
This commit is contained in:
parent
c2ec992698
commit
5356af8c48
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue