From: Marc Date: Wed, 11 Sep 2019 17:17:05 +0000 (-0700) Subject: Doc: recursive glob ** follows symlinks to directories (GH-12918) X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e24594bfe75aff3e654665cb940ddc4d4acffd2f;p=python Doc: recursive glob ** follows symlinks to directories (GH-12918) --- diff --git a/Doc/library/glob.rst b/Doc/library/glob.rst index 96584437ce..92a8c4d1eb 100644 --- a/Doc/library/glob.rst +++ b/Doc/library/glob.rst @@ -49,8 +49,9 @@ For example, ``'[?]'`` matches the character ``'?'``. single: **; in glob-style wildcards If *recursive* is true, the pattern "``**``" will match any files and zero or - more directories and subdirectories. If the pattern is followed by an - ``os.sep``, only directories and subdirectories match. + more directories, subdirectories and symbolic links to directories. If the + pattern is followed by an :data:`os.sep` or :data:`os.altsep` then files will not + match. .. audit-event:: glob.glob pathname,recursive glob.glob