summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNice Zombies <nineteendo19d0@gmail.com>2024-04-16 22:55:53 (GMT)
committerGitHub <noreply@github.com>2024-04-16 22:55:53 (GMT)
commita23fa3368e50866f31d6fc1c66a9a5ca2a580239 (patch)
treeebf1542865beae20188a260af9b1afda2e727d6f
parentdd4383f3c12fc938a445d974543f897c3fc07c0a (diff)
downloadcpython-a23fa3368e50866f31d6fc1c66a9a5ca2a580239.zip
cpython-a23fa3368e50866f31d6fc1c66a9a5ca2a580239.tar.gz
cpython-a23fa3368e50866f31d6fc1c66a9a5ca2a580239.tar.bz2
gh-117945: Fix `os.path.ismount()` documentation (#117947)
-rw-r--r--Doc/library/os.path.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst
index ebeb3bb..24d423e 100644
--- a/Doc/library/os.path.rst
+++ b/Doc/library/os.path.rst
@@ -302,8 +302,8 @@ the :mod:`glob` module.)
always mount points, and for any other path ``GetVolumePathName`` is called
to see if it is different from the input path.
- .. versionadded:: 3.4
- Support for detecting non-root mount points on Windows.
+ .. versionchanged:: 3.4
+ Added support for detecting non-root mount points on Windows.
.. versionchanged:: 3.6
Accepts a :term:`path-like object`.