mirror of https://github.com/python/cpython
bpo-32860: Fix a missing asterisk in the documentation for glob.iglob() (GH-5712)
This commit is contained in:
parent
4c6955e2b0
commit
6887d86e9a
|
@ -48,7 +48,7 @@ For example, ``'[?]'`` matches the character ``'?'``.
|
|||
Support for recursive globs using "``**``".
|
||||
|
||||
|
||||
.. function:: iglob(pathname, recursive=False)
|
||||
.. function:: iglob(pathname, *, recursive=False)
|
||||
|
||||
Return an :term:`iterator` which yields the same values as :func:`glob`
|
||||
without actually storing them all simultaneously.
|
||||
|
|
Loading…
Reference in New Issue