summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2023-05-24 23:16:13 (GMT)
committerGitHub <noreply@github.com>2023-05-24 23:16:13 (GMT)
commit6031727a37c6003f78e3b0c7414a0a214855dd08 (patch)
tree7a43a3130d0bdd10d6cbd98caa91e6d7e9973c4a /Misc
parent087c1a6539eac330372a8b759bf3e2d472f6148a (diff)
downloadcpython-6031727a37c6003f78e3b0c7414a0a214855dd08.zip
cpython-6031727a37c6003f78e3b0c7414a0a214855dd08.tar.gz
cpython-6031727a37c6003f78e3b0c7414a0a214855dd08.tar.bz2
gh-104820: Fixes os.stat on Windows to better handle file systems that do not support FileIdInformation (GH-104892)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Windows/2023-05-24-21-00-57.gh-issue-104820.ibyrpp.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2023-05-24-21-00-57.gh-issue-104820.ibyrpp.rst b/Misc/NEWS.d/next/Windows/2023-05-24-21-00-57.gh-issue-104820.ibyrpp.rst
new file mode 100644
index 0000000..5bdfbab
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2023-05-24-21-00-57.gh-issue-104820.ibyrpp.rst
@@ -0,0 +1,2 @@
+Fixes :func:`~os.stat` and related functions on file systems that do not
+support file ID requests. This includes FAT32 and exFAT.