diff options
author | Zackery Spytz <zspytz@gmail.com> | 2018-02-17 03:39:51 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2018-02-17 03:39:51 (GMT) |
commit | 6887d86e9a04b9c5718b08e5d9e1ca3cc1f53721 (patch) | |
tree | 899524b9e78e61fe7acc26b0cd9db219e830d5e8 /Doc/library/glob.rst | |
parent | 4c6955e2b0ccf88c705f8d1fac685a8e65f9699e (diff) | |
download | cpython-6887d86e9a04b9c5718b08e5d9e1ca3cc1f53721.zip cpython-6887d86e9a04b9c5718b08e5d9e1ca3cc1f53721.tar.gz cpython-6887d86e9a04b9c5718b08e5d9e1ca3cc1f53721.tar.bz2 |
bpo-32860: Fix a missing asterisk in the documentation for glob.iglob() (GH-5712)
Diffstat (limited to 'Doc/library/glob.rst')
-rw-r--r-- | Doc/library/glob.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/glob.rst b/Doc/library/glob.rst index a8a5a50..25bd4b7 100644 --- a/Doc/library/glob.rst +++ b/Doc/library/glob.rst @@ -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. |