diff options
author | Yoni Lavi <yoni@codeinstitute.net> | 2019-11-27 05:08:50 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2019-11-27 05:08:50 (GMT) |
commit | ce4b7a273a9c560ed4b1a6284ef1bbb02d8e9782 (patch) | |
tree | 5ac6109eefd2458c7759df18732d97178b02c52e /Doc | |
parent | 1ef4c32c8d4f374adfea599f033fa61254bf951d (diff) | |
download | cpython-ce4b7a273a9c560ed4b1a6284ef1bbb02d8e9782.zip cpython-ce4b7a273a9c560ed4b1a6284ef1bbb02d8e9782.tar.gz cpython-ce4b7a273a9c560ed4b1a6284ef1bbb02d8e9782.tar.bz2 |
Show the differing module names for readlink() (GH-17395)
This was very confusing with the text for both being just `readlink()`.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 5c669a0..1cd96ef 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -184,8 +184,8 @@ case), and one used ``__VENV_NAME__`` instead. pathlib ------- -Added :meth:`~pathlib.Path.readlink()` which acts similar to -:func:`~os.readlink`. +Added :meth:`pathlib.Path.readlink()` which acts similarly to +:func:`os.readlink`. (Contributed by Girts Folkmanis in :issue:`30618`) pprint |