summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2017-01-23 01:30:28 (GMT)
committerGregory P. Smith <greg@krypto.org>2017-01-23 01:30:28 (GMT)
commit5c8706c04a90bf4a202970bf1b2d32febefdda4f (patch)
treed3df151a4c2c89f99362d7d9c96353347d30e0f7 /Misc
parent2a404b63d48d73bbaa007d89efb7a01048475acd (diff)
parent78034c81fb0f5b82845533e215f7e5686ce88964 (diff)
downloadcpython-5c8706c04a90bf4a202970bf1b2d32febefdda4f.zip
cpython-5c8706c04a90bf4a202970bf1b2d32febefdda4f.tar.gz
cpython-5c8706c04a90bf4a202970bf1b2d32febefdda4f.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 c68ffe8..5d1e9c1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -215,6 +215,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.