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

(cherry picked from commit 6887d86e9a)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-02-16 19:58:11 -08:00 committed by GitHub
parent f62a9d41b5
commit 76591bc03a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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.