mirror of https://github.com/python/cpython
document default value for fillvalue
This commit is contained in:
parent
612e29b722
commit
5255cba4bc
|
@ -368,9 +368,10 @@ loops that truncate the stream.
|
|||
except IndexError:
|
||||
pass
|
||||
|
||||
If one of the iterables is potentially infinite, then the :func:`izip_longest`
|
||||
function should be wrapped with something that limits the number of calls (for
|
||||
example :func:`islice` or :func:`takewhile`).
|
||||
If one of the iterables is potentially infinite, then the
|
||||
:func:`izip_longest` function should be wrapped with something that limits
|
||||
the number of calls (for example :func:`islice` or :func:`takewhile`). If
|
||||
not specified, *fillvalue* defaults to ``None``.
|
||||
|
||||
.. versionadded:: 2.6
|
||||
|
||||
|
|
Loading…
Reference in New Issue