]> granicus.if.org Git - python/commit
subprocess's Popen.wait() is now thread safe so that multiple threads
authorGregory P. Smith <greg@krypto.org>
Wed, 23 Apr 2014 07:38:22 +0000 (00:38 -0700)
committerGregory P. Smith <greg@krypto.org>
Wed, 23 Apr 2014 07:38:22 +0000 (00:38 -0700)
commitb2188630125e5b5815aa60181fdd93f036a89522
treea356a51e8701e88b1e982f3cc48f16eb3301fe52
parentb0c597f5ffcb696a394c5901fec0e489f854ae12
parentd65ba51e245ffdd155bc1e7b8884fc943048111f
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
Misc/NEWS