diff options
author | Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com> | 2022-10-05 17:15:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 17:15:31 (GMT) |
commit | 7015e1379791cbf19908cd1a7c668a5d6e7165d5 (patch) | |
tree | 1bd888e4ba361d3fab3dc95d5b550bdc22a76c04 /Misc/NEWS.d | |
parent | 0e72606dd4cf3023a4f8c2fe3c58082592b253f7 (diff) | |
download | cpython-7015e1379791cbf19908cd1a7c668a5d6e7165d5.zip cpython-7015e1379791cbf19908cd1a7c668a5d6e7165d5.tar.gz cpython-7015e1379791cbf19908cd1a7c668a5d6e7165d5.tar.bz2 |
gh-88050: Fix asyncio subprocess to kill process cleanly when process is blocked (#32073)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-07-08-08-39-35.gh-issue-88050.0aOC_m.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-07-08-08-39-35.gh-issue-88050.0aOC_m.rst b/Misc/NEWS.d/next/Library/2022-07-08-08-39-35.gh-issue-88050.0aOC_m.rst new file mode 100644 index 0000000..43c0765 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-07-08-08-39-35.gh-issue-88050.0aOC_m.rst @@ -0,0 +1 @@ +Fix :mod:`asyncio` subprocess transport to kill process cleanly when process is blocked and avoid ``RuntimeError`` when loop is closed. Patch by Kumar Aditya. |