diff options
author | Filipe LaĆns <lains@archlinux.org> | 2020-11-21 09:22:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-21 09:22:08 (GMT) |
commit | 01a202ab6b0ded546e47073db6498262086c52e9 (patch) | |
tree | 93560f437ba651e66bbed88130a2aa90a36a3be5 /Misc/NEWS.d | |
parent | 31729366e2bc09632e78f3896dbce0ae64914f28 (diff) | |
download | cpython-01a202ab6b0ded546e47073db6498262086c52e9.zip cpython-01a202ab6b0ded546e47073db6498262086c52e9.tar.gz cpython-01a202ab6b0ded546e47073db6498262086c52e9.tar.bz2 |
bpo-40550: Fix time-of-check/time-of-action issue in subprocess.Popen.send_signal. (GH-20010)
send_signal() now swallows the exception if the process it thought was still alive winds up not to exist anymore (always a plausible race condition despite the checks).
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-05-08-21-30-54.bpo-40550.i7GWkb.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-05-08-21-30-54.bpo-40550.i7GWkb.rst b/Misc/NEWS.d/next/Library/2020-05-08-21-30-54.bpo-40550.i7GWkb.rst new file mode 100644 index 0000000..b0f3f03 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-05-08-21-30-54.bpo-40550.i7GWkb.rst @@ -0,0 +1 @@ +Fix time-of-check/time-of-action issue in subprocess.Popen.send_signal. |