diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-30 22:07:17 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-30 22:07:17 (GMT) |
commit | 009bc05fdc30ed05700b8aaf7e73a31fef760558 (patch) | |
tree | 34f10cbb9bd779d8c2150ab696fc77cb7693b02f /Doc/library/pathlib.rst | |
parent | 50bb940ab800112d1ffe883dfefaa9788e7602aa (diff) | |
parent | 5e3677d7afbf6933b1638c24fa5ad930e8644768 (diff) | |
download | cpython-009bc05fdc30ed05700b8aaf7e73a31fef760558.zip cpython-009bc05fdc30ed05700b8aaf7e73a31fef760558.tar.gz cpython-009bc05fdc30ed05700b8aaf7e73a31fef760558.tar.bz2 |
Merge from 3.5
Diffstat (limited to 'Doc/library/pathlib.rst')
-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 fe049de..61600c4 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -930,7 +930,7 @@ call fails (for example because the path doesn't exist): >>> p.resolve() PosixPath('/home/antoine/pathlib') - `".."` components are also eliminated (this is the only method to do so):: + "``..``" components are also eliminated (this is the only method to do so):: >>> p = Path('docs/../setup.py') >>> p.resolve() |