diff options
author | Gregory P. Smith <greg@krypto.org> | 2017-01-23 01:28:38 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2017-01-23 01:28:38 (GMT) |
commit | 50e16e33af69aca6e908bace793178c8d6ab8272 (patch) | |
tree | 3ec26643b5ae7a72690a998628162e252a2e4a76 /Misc | |
parent | 7fe28ad8375677a6d696271d48783d6c38a74dce (diff) | |
download | cpython-50e16e33af69aca6e908bace793178c8d6ab8272.zip cpython-50e16e33af69aca6e908bace793178c8d6ab8272.tar.gz cpython-50e16e33af69aca6e908bace793178c8d6ab8272.tar.bz2 |
Issue #29335: Fix subprocess.Popen.wait() when the child process has
exited to a stopped instead of terminated state (ex: when under ptrace).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -13,6 +13,9 @@ Core and Builtins Library ------- +- Issue #29335: Fix subprocess.Popen.wait() when the child process has + exited to a stopped instead of terminated state (ex: when under ptrace). + - Issue #29290: Fix a regression in argparse that help messages would wrap at non-breaking spaces. |