From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 17 Feb 2018 03:51:09 +0000 (-0800) Subject: bpo-32860: Fix a missing asterisk in the documentation for glob.iglob() (GH-5712) X-Git-Tag: v3.7.0b2~70 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f764110593b337161e9321671dc13b54ca0cf95;p=thirdparty%2FPython%2Fcpython.git bpo-32860: Fix a missing asterisk in the documentation for glob.iglob() (GH-5712) (cherry picked from commit 6887d86e9a04b9c5718b08e5d9e1ca3cc1f53721) Co-authored-by: Zackery Spytz --- 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.