commit | ace676e2c2121f94a55effc6a30b3b0e987ae7da | [log] [tgz] |
---|---|---|
author | Barney Gale <barney.gale@gmail.com> | Mon May 29 15:59:52 2023 |
committer | GitHub <noreply@github.com> | Mon May 29 15:59:52 2023 |
tree | 45446ea82eda9526217298b32cbd49e51d91151a | |
parent | 1668b41dc477bc9562e4c50ab36a232839b4621b [diff] |
GH-77609: Add follow_symlinks argument to `pathlib.Path.glob()` (GH-102616) Add a keyword-only *follow_symlinks* parameter to `pathlib.Path.glob()` and`rglob()`. When *follow_symlinks* is `None` (the default), these methods follow symlinks except when evaluating "`**`" wildcards. When set to true or false, symlinks are always or never followed, respectively.