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

Mariatta webhook-mailer at python.org
Fri Feb 16 22:39:55 EST 2018


https://github.com/python/cpython/commit/6887d86e9a04b9c5718b08e5d9e1ca3cc1f53721
commit: 6887d86e9a04b9c5718b08e5d9e1ca3cc1f53721
branch: master
author: Zackery Spytz <zspytz at gmail.com>
committer: Mariatta <Mariatta at users.noreply.github.com>
date: 2018-02-16T19:39:51-08:00
summary:

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

files:
M Doc/library/glob.rst

diff --git a/Doc/library/glob.rst b/Doc/library/glob.rst
index a8a5a500cbcf..25bd4b7f9a87 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.



More information about the Python-checkins mailing list