mirror of
https://github.com/python/cpython.git
synced 2024-12-14 04:17:19 +08:00
Minor stylistic edit to the grouper recipe (gh112759)
This commit is contained in:
parent
11d88a178b
commit
c2e2df8356
@ -916,9 +916,9 @@ which incur interpreter overhead.
|
||||
args = [iter(iterable)] * n
|
||||
if incomplete == 'fill':
|
||||
return zip_longest(*args, fillvalue=fillvalue)
|
||||
if incomplete == 'strict':
|
||||
elif incomplete == 'strict':
|
||||
return zip(*args, strict=True)
|
||||
if incomplete == 'ignore':
|
||||
elif incomplete == 'ignore':
|
||||
return zip(*args)
|
||||
else:
|
||||
raise ValueError('Expected fill, strict, or ignore')
|
||||
|
Loading…
Reference in New Issue
Block a user