From 48e529d182199ca8ecf2b8daffc427d6e0f24f9f Mon Sep 17 00:00:00 2001 From: Nice Zombies Date: Tue, 16 Apr 2024 22:59:22 +0200 Subject: [PATCH 1/2] Fix `os.path.ismount()` documentation --- Doc/library/os.path.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index ebeb3bb50b8b1f..764e9c7dea48de 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -302,7 +302,7 @@ 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 + .. versionchanged:: 3.4 Support for detecting non-root mount points on Windows. .. versionchanged:: 3.6 From caa1f380e075fb7c8201a1050a3378ed792bc002 Mon Sep 17 00:00:00 2001 From: Nice Zombies Date: Tue, 16 Apr 2024 23:04:06 +0200 Subject: [PATCH 2/2] Update Doc/library/os.path.rst Co-authored-by: Alex Waygood --- Doc/library/os.path.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index 764e9c7dea48de..24d423eb5fbfed 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -303,7 +303,7 @@ the :mod:`glob` module.) to see if it is different from the input path. .. versionchanged:: 3.4 - Support for detecting non-root mount points on Windows. + Added support for detecting non-root mount points on Windows. .. versionchanged:: 3.6 Accepts a :term:`path-like object`.