From b2b6cd00c6329426fc3b34700f2e22155b44168c Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 20 Apr 2021 12:45:45 -0400 Subject: [PATCH] docs: clarify what patterns Path.glob accepts (GH-25486) Automerge-Triggered-By: GH:Yhg1s --- Doc/library/pathlib.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst index f15fed3f02a..122642ad5a4 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -798,8 +798,9 @@ call fails (for example because the path doesn't exist). >>> sorted(Path('.').glob('*/*.py')) [PosixPath('docs/conf.py')] - The "``**``" pattern means "this directory and all subdirectories, - recursively". In other words, it enables recursive globbing:: + Patterns are the same as for :mod:`fnmatch`, with the addition of "``**``" + which means "this directory and all subdirectories, recursively". In other + words, it enables recursive globbing:: >>> sorted(Path('.').glob('**/*.py')) [PosixPath('build/lib/pathlib.py'),