https://hg.python.org/cpython/rev/abbf12ea20c0 changeset: 104193:abbf12ea20c0 branch: 3.5 parent: 104188:1bead1f0260f user: Berker Peksag <berker.peksag@gmail.com> date: Sat Oct 01 01:02:39 2016 +0300 summary: Fix Path.glob() link, reported by SilentGhost files: Doc/library/pathlib.rst | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -934,7 +934,7 @@ .. method:: Path.rglob(pattern) - This is like calling :meth:`glob` with "``**``" added in front of the + This is like calling :meth:`Path.glob` with "``**``" added in front of the given *pattern*: >>> sorted(Path().rglob("*.py")) -- Repository URL: https://hg.python.org/cpython