summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-11-13 16:25:01 (GMT)
committerGitHub <noreply@github.com>2023-11-13 16:25:01 (GMT)
commitdfdbfc548f45dc254844b71f77f03136c413b76b (patch)
treeabbc5a67bb397decec20ffcb701e48d9f00b2c6d /Misc
parentc6aea46a71d158f993cc723c14b4bf7982b73a2a (diff)
downloadcpython-dfdbfc548f45dc254844b71f77f03136c413b76b.zip
cpython-dfdbfc548f45dc254844b71f77f03136c413b76b.tar.gz
cpython-dfdbfc548f45dc254844b71f77f03136c413b76b.tar.bz2
gh-111856: Fix os.fstat on windows with FAT32 and exFAT filesystem (GH-112038)
(cherry picked from commit 29af7369dbbbba8cefafb196e977bce8189a527d) Co-authored-by: AN Long <aisk@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Windows/2023-11-13-22-35-27.gh-issue-111856.vEtA5z.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2023-11-13-22-35-27.gh-issue-111856.vEtA5z.rst b/Misc/NEWS.d/next/Windows/2023-11-13-22-35-27.gh-issue-111856.vEtA5z.rst
new file mode 100644
index 0000000..b1388df
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2023-11-13-22-35-27.gh-issue-111856.vEtA5z.rst
@@ -0,0 +1,2 @@
+Fixes :func:`~os.fstat` on file systems that do not support file ID
+requests. This includes FAT32 and exFAT.