bpo-32860: Fix a missing asterisk in the documentation for glob.iglob() (GH-5712)

This commit is contained in:
Zackery Spytz 2018-02-16 20:39:51 -07:00 committed by Mariatta
parent 4c6955e2b0
commit 6887d86e9a
1 changed files with 1 additions and 1 deletions

View File

@ -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.