From: Berker Peksag Date: Fri, 30 Sep 2016 22:02:39 +0000 (+0300) Subject: Fix Path.glob() link, reported by SilentGhost X-Git-Tag: v3.6.0b2~82^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=06a8ac0f26e722c92abd73780bcd155d17865436;p=thirdparty%2FPython%2Fcpython.git Fix Path.glob() link, reported by SilentGhost --- diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst index 384611c791d3..a6ad1568833f 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -934,7 +934,7 @@ call fails (for example because the path doesn't exist): .. 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"))