diff options
author | Steve Dower <steve.dower@python.org> | 2023-03-10 12:21:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-10 12:21:37 (GMT) |
commit | cb35882773a3ffc7fe0671e64848f4c926a2d52f (patch) | |
tree | d390ad1c69a25c999f6f9cf3d31de7b2323a8396 /Doc/whatsnew | |
parent | 2999e02836f9112de6b17784eaca762fb87e71a9 (diff) | |
download | cpython-cb35882773a3ffc7fe0671e64848f4c926a2d52f.zip cpython-cb35882773a3ffc7fe0671e64848f4c926a2d52f.tar.gz cpython-cb35882773a3ffc7fe0671e64848f4c926a2d52f.tar.bz2 |
gh-102519: Add os.listdrives, os.listvolumes and os.listmounts on Windows (GH-102544)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.12.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index d982cb6..48b7aab 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -294,6 +294,10 @@ os method to check if the entry is a junction. (Contributed by Charles Machalow in :gh:`99547`.) +* Add :func:`os.listdrives`, :func:`os.listvolumes` and :func:`os.listmounts` + functions on Windows for enumerating drives, volumes and mount points. + (Contributed by Steve Dower in :gh:`102519`.) + os.path ------- |