[Python-checkins] Doc: recursive glob ** follows symlinks to directories (GH-12918)

Miss Islington (bot) webhook-mailer at python.org
Wed Sep 11 13:32:29 EDT 2019


https://github.com/python/cpython/commit/d47993664e6e82e98190cd14030db75aff7e2437
commit: d47993664e6e82e98190cd14030db75aff7e2437
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-09-11T10:32:26-07:00
summary:

Doc: recursive glob ** follows symlinks to directories (GH-12918)

(cherry picked from commit e24594bfe75aff3e654665cb940ddc4d4acffd2f)

Co-authored-by: Marc <Marc.Herbert+github at gmail.com>

files:
M Doc/library/glob.rst

diff --git a/Doc/library/glob.rst b/Doc/library/glob.rst
index 96584437cef1..92a8c4d1eb87 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
 



More information about the Python-checkins mailing list