]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
subprocess's Popen.wait() is now thread safe so that multiple threads
authorGregory P. Smith <greg@krypto.org>
Wed, 23 Apr 2014 07:27:17 +0000 (00:27 -0700)
committerGregory P. Smith <greg@krypto.org>
Wed, 23 Apr 2014 07:27:17 +0000 (00:27 -0700)
commitd65ba51e245ffdd155bc1e7b8884fc943048111f
treef9cfcc72574b93fc268e08924ac0510a4318d376
parent9e599673b4434a66ec44866e1ad81c89d9950b87
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.
Lib/subprocess.py
Lib/test/test_subprocess.py
Misc/NEWS