]> granicus.if.org Git - python/commitdiff
bpo-32860: Fix a missing asterisk in the documentation for glob.iglob() (GH-5712)
authorZackery Spytz <zspytz@gmail.com>
Sat, 17 Feb 2018 03:39:51 +0000 (20:39 -0700)
committerMariatta <Mariatta@users.noreply.github.com>
Sat, 17 Feb 2018 03:39:51 +0000 (19:39 -0800)
Doc/library/glob.rst

index a8a5a500cbcfbf304141aea90585fb0cc249c631..25bd4b7f9a874c6136825a4703d9a82568837fa5 100644 (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.