diff options
author | Brett Cannon <brett@python.org> | 2023-11-09 23:35:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-09 23:35:51 (GMT) |
commit | 5a8e6f8bccd7048e592f6bd45af503ce3fac95dd (patch) | |
tree | 612cb965b7539c4493be28c65b8dfbb302428c51 /Misc/NEWS.d | |
parent | 09df271965b5af6beeaa6a2d17a2c5a145fc5201 (diff) | |
download | cpython-5a8e6f8bccd7048e592f6bd45af503ce3fac95dd.zip cpython-5a8e6f8bccd7048e592f6bd45af503ce3fac95dd.tar.gz cpython-5a8e6f8bccd7048e592f6bd45af503ce3fac95dd.tar.bz2 |
[3.12] GH-111804: Drop posix.fallocate() under WASI (GH-111869) (GH-111919)
GH-111804: Drop posix.fallocate() under WASI (GH-111869)
Drop posix.fallocate() under WASI.
The underlying POSIX function, posix_fallocate(), was found to vary too
much between implementations to remain in WASI. As such, while it was
available in WASI preview1, it's been dropped in preview2.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-11-08-15-58-57.gh-issue-111804.uAXTOL.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-11-08-15-58-57.gh-issue-111804.uAXTOL.rst b/Misc/NEWS.d/next/Library/2023-11-08-15-58-57.gh-issue-111804.uAXTOL.rst new file mode 100644 index 0000000..2696f2f --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-11-08-15-58-57.gh-issue-111804.uAXTOL.rst @@ -0,0 +1,2 @@ +Remove posix.fallocate() under WASI as the underlying posix_fallocate() is +not available in WASI preview2. |