summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2014-04-23 07:27:17 (GMT)
committerGregory P. Smith <greg@krypto.org>2014-04-23 07:27:17 (GMT)
commitd65ba51e245ffdd155bc1e7b8884fc943048111f (patch)
treef9cfcc72574b93fc268e08924ac0510a4318d376 /Misc
parent9e599673b4434a66ec44866e1ad81c89d9950b87 (diff)
downloadcpython-d65ba51e245ffdd155bc1e7b8884fc943048111f.zip
cpython-d65ba51e245ffdd155bc1e7b8884fc943048111f.tar.gz
cpython-d65ba51e245ffdd155bc1e7b8884fc943048111f.tar.bz2
subprocess's Popen.wait() is now thread safe so that multiple threads
may be calling wait() or poll() on a Popen instance at the same time without losing the Popen.returncode value. Fixes issue #21291.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 332c7ef..b737df8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,6 +39,10 @@ Core and Builtins
Library
-------
+- Issue #21291: subprocess's Popen.wait() is now thread safe so that
+ multiple threads may be calling wait() or poll() on a Popen instance
+ at the same time without losing the Popen.returncode value.
+
- Issue #21127: Path objects can now be instantiated from str subclass
instances (such as numpy.str_).