diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-11-13 16:25:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-13 16:25:01 (GMT) |
commit | dfdbfc548f45dc254844b71f77f03136c413b76b (patch) | |
tree | abbc5a67bb397decec20ffcb701e48d9f00b2c6d /Misc | |
parent | c6aea46a71d158f993cc723c14b4bf7982b73a2a (diff) | |
download | cpython-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.rst | 2 |
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. |