diff options
author | Steve Dower <steve.dower@python.org> | 2023-05-29 09:05:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-29 09:05:32 (GMT) |
commit | bfd20d257e4ad16a25f4bac0ea4dbb719cdf6bc7 (patch) | |
tree | 325056d3c4bbd55dd1b81be6d7ab150b5c0749b1 /Misc/NEWS.d | |
parent | e92ac0a741b125f1cffe8c07b054d1dea7b0a05a (diff) | |
download | cpython-bfd20d257e4ad16a25f4bac0ea4dbb719cdf6bc7.zip cpython-bfd20d257e4ad16a25f4bac0ea4dbb719cdf6bc7.tar.gz cpython-bfd20d257e4ad16a25f4bac0ea4dbb719cdf6bc7.tar.bz2 |
gh-104803: Implement ntpath.isdevdrive for checking whether a path is on a Windows Dev Drive (GH-104805)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Windows/2023-05-23-19-26-28.gh-issue-104803.gqxYml.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2023-05-23-19-26-28.gh-issue-104803.gqxYml.rst b/Misc/NEWS.d/next/Windows/2023-05-23-19-26-28.gh-issue-104803.gqxYml.rst new file mode 100644 index 0000000..d2242c7 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2023-05-23-19-26-28.gh-issue-104803.gqxYml.rst @@ -0,0 +1,3 @@ +Add :func:`os.path.isdevdrive` to detect whether a path is on a Windows Dev +Drive. Returns ``False`` on platforms that do not support Dev Drive, and is +absent on non-Windows platforms. |