diff options
author | Brett Cannon <brett@python.org> | 2016-06-24 19:22:14 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-06-24 19:22:14 (GMT) |
commit | 559ad5d401229399e7bc887b62a87d9f69206fa6 (patch) | |
tree | e7e3d9dee8ea8f47b152005c1feed430f5c41c1a /Doc/library/os.rst | |
parent | 3f9fbfcdd420a3277dcebbf61cd830b7626539a5 (diff) | |
download | cpython-559ad5d401229399e7bc887b62a87d9f69206fa6.zip cpython-559ad5d401229399e7bc887b62a87d9f69206fa6.tar.gz cpython-559ad5d401229399e7bc887b62a87d9f69206fa6.tar.bz2 |
Remove a stale reference to pathlib.PurePath.path
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 7b26953..e73d8ee 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -2053,9 +2053,8 @@ features: Note that there is a nice correspondence between several attributes and methods of ``DirEntry`` and of :class:`pathlib.Path`. In - particular, the ``name`` and ``path`` attributes have the same - meaning, as do the ``is_dir()``, ``is_file()``, ``is_symlink()`` - and ``stat()`` methods. + particular, the ``name`` attribute has the same meaning, as do the + ``is_dir()``, ``is_file()``, ``is_symlink()`` and ``stat()`` methods. .. versionadded:: 3.5 |