diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-10-25 03:34:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-25 03:34:08 (GMT) |
commit | 8950689dcecbab3229f9630c4f7b142414e5907b (patch) | |
tree | b159dd05ba32c537eb82667cc78e186d6fc84b8f /Misc | |
parent | 5fb3b6111461f513b9566c9dcc96dff2a1ca8840 (diff) | |
download | cpython-8950689dcecbab3229f9630c4f7b142414e5907b.zip cpython-8950689dcecbab3229f9630c4f7b142414e5907b.tar.gz cpython-8950689dcecbab3229f9630c4f7b142414e5907b.tar.bz2 |
[3.11] GH-89237: fix hang in proactor `subprocess.wait_closed()` (GH-98572) (#98620)
GH-89237: fix hang in proactor `subprocess.wait_closed()` (GH-98572)
(cherry picked from commit ad1dc3ebb6aadaeeeacde13d4ed2d62bf302bf62)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-10-23-18-30-39.gh-issue-89237.kBui30.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-10-23-18-30-39.gh-issue-89237.kBui30.rst b/Misc/NEWS.d/next/Library/2022-10-23-18-30-39.gh-issue-89237.kBui30.rst new file mode 100644 index 0000000..668ea4c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-10-23-18-30-39.gh-issue-89237.kBui30.rst @@ -0,0 +1 @@ +Fix hang on Windows in ``subprocess.wait_closed()`` in :mod:`asyncio` with :class:`~asyncio.ProactorEventLoop`. Patch by Kumar Aditya. |