diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-30 22:03:01 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-30 22:03:01 (GMT) |
commit | 50bb940ab800112d1ffe883dfefaa9788e7602aa (patch) | |
tree | 92c36586c06038b171a8b59c535bd67955e588aa /Doc | |
parent | 812a2b65af1897aa9694ff65fc62516a4e10269c (diff) | |
parent | 06a8ac0f26e722c92abd73780bcd155d17865436 (diff) | |
download | cpython-50bb940ab800112d1ffe883dfefaa9788e7602aa.zip cpython-50bb940ab800112d1ffe883dfefaa9788e7602aa.tar.gz cpython-50bb940ab800112d1ffe883dfefaa9788e7602aa.tar.bz2 |
Merge from 3.5
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/pathlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst index 9257d2d..fe049de 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -943,7 +943,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")) |