summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2017-01-23 01:28:38 (GMT)
committerGregory P. Smith <greg@krypto.org>2017-01-23 01:28:38 (GMT)
commit50e16e33af69aca6e908bace793178c8d6ab8272 (patch)
tree3ec26643b5ae7a72690a998628162e252a2e4a76 /Misc
parent7fe28ad8375677a6d696271d48783d6c38a74dce (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d2a8390..dd68006 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.