summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2017-01-23 01:29:44 (GMT)
committerGregory P. Smith <greg@krypto.org>2017-01-23 01:29:44 (GMT)
commit78034c81fb0f5b82845533e215f7e5686ce88964 (patch)
tree006793f296a6f98d4e9c7707b2cfb7d0034532bf /Misc
parentb1681189af1157d9b6161c8a3a645c2eb816b415 (diff)
parent50e16e33af69aca6e908bace793178c8d6ab8272 (diff)
downloadcpython-78034c81fb0f5b82845533e215f7e5686ce88964.zip
cpython-78034c81fb0f5b82845533e215f7e5686ce88964.tar.gz
cpython-78034c81fb0f5b82845533e215f7e5686ce88964.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 c727559..321441f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -47,6 +47,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.