diff options
author | Christian Heimes <christian@python.org> | 2022-05-14 18:23:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-14 18:23:19 (GMT) |
commit | db0b455ff482df68f331411bf22b3e5829398280 (patch) | |
tree | c5fcb4f8911ae1b6e80c97325eb62fb11674269a /Misc | |
parent | d923fdf54bc97baece879179ba4971f632b9722b (diff) | |
download | cpython-db0b455ff482df68f331411bf22b3e5829398280.zip cpython-db0b455ff482df68f331411bf22b3e5829398280.tar.gz cpython-db0b455ff482df68f331411bf22b3e5829398280.tar.bz2 |
gh-90473: Fail subprocess early on Emscripten/WASI (GH-92802)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-05-14-11-41-23.gh-issue-90473.kPdOZl.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-05-14-11-41-23.gh-issue-90473.kPdOZl.rst b/Misc/NEWS.d/next/Library/2022-05-14-11-41-23.gh-issue-90473.kPdOZl.rst new file mode 100644 index 0000000..bf5ee54 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-05-14-11-41-23.gh-issue-90473.kPdOZl.rst @@ -0,0 +1,2 @@ +:mod:`subprocess` now fails early on Emscripten and WASI platforms to work +around missing :func:`os.pipe` on WASI. |