diff options
author | Alex Waygood <Alex.Waygood@Gmail.com> | 2023-12-07 20:57:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-07 20:57:30 (GMT) |
commit | 2c3906bc4b7ee62bf9d122a6fdd98b6ae330643f (patch) | |
tree | 7b4312e60aa5e4ebbc406712291be970c23047f6 /Doc/whatsnew/3.7.rst | |
parent | 64d8b4c7099a6097a7f7340c575679c5622fcd5c (diff) | |
download | cpython-2c3906bc4b7ee62bf9d122a6fdd98b6ae330643f.zip cpython-2c3906bc4b7ee62bf9d122a6fdd98b6ae330643f.tar.gz cpython-2c3906bc4b7ee62bf9d122a6fdd98b6ae330643f.tar.bz2 |
gh-101100: Silence Sphinx warnings when `ntpath` or `posixpath` are referenced (#112833)
Diffstat (limited to 'Doc/whatsnew/3.7.rst')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 99f280a..7a74f9c 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -2144,9 +2144,9 @@ The following features and APIs have been removed from Python 3.7: * Removed support of the *exclude* argument in :meth:`tarfile.TarFile.add`. It was deprecated in Python 2.7 and 3.2. Use the *filter* argument instead. -* The ``splitunc()`` function in the :mod:`ntpath` module was deprecated in - Python 3.1, and has now been removed. Use the :func:`~os.path.splitdrive` - function instead. +* The :func:`!ntpath.splitunc` function was deprecated in + Python 3.1, and has now been removed. Use :func:`~os.path.splitdrive` + instead. * :func:`collections.namedtuple` no longer supports the *verbose* parameter or ``_source`` attribute which showed the generated source code for the |