mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Fix leftover quote.
This commit is contained in:
parent
c2ec992698
commit
5356af8c48
1 changed files with 1 additions and 1 deletions
|
@ -734,7 +734,7 @@ which incur interpreter overhead.
|
||||||
|
|
||||||
def grouper(n, iterable, fillvalue=None):
|
def grouper(n, iterable, fillvalue=None):
|
||||||
"Collect data into fixed-length chunks or blocks"
|
"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
|
args = [iter(iterable)] * n
|
||||||
return izip_longest(fillvalue=fillvalue, *args)
|
return izip_longest(fillvalue=fillvalue, *args)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue