From 89767c3ff098f302554f941edf100baa623f4aa0 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Fri, 16 Feb 2018 19:27:03 -0700 Subject: [PATCH] bpo-32860: Fix a missing asterisk in the documentation for glob.iglob() --- Doc/library/glob.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/glob.rst b/Doc/library/glob.rst index a8a5a500cbcfbf..25bd4b7f9a874c 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.