diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-10-01 01:07:42 +0300 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-10-01 01:07:42 +0300 |
commit | 2d57d0a7a5357bd204ac1fc386ef016f0cf9d923 (patch) | |
tree | 5b3fbbe3efa14b9606bcd213e6a1d44f9473817c | |
parent | f58d4548a3870057590e73dda32967a5250d3959 (diff) | |
parent | 009bc05fdc30ed05700b8aaf7e73a31fef760558 (diff) | |
download | cpython-git-2d57d0a7a5357bd204ac1fc386ef016f0cf9d923.tar.gz |
Merge from 3.6
-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 fe049de040..61600c4bf6 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() |