summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/library/pathlib.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst
index 65dd509..a44c52d 100644
--- a/Doc/library/pathlib.rst
+++ b/Doc/library/pathlib.rst
@@ -582,6 +582,10 @@ Pure paths provide the following methods and properties:
>>> PurePath('a/b.py').match(pattern)
True
+ .. note::
+ The recursive wildcard "``**``" isn't supported by this method (it acts
+ like non-recursive "``*``".)
+
.. versionchanged:: 3.12
Accepts an object implementing the :class:`os.PathLike` interface.