]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-39995: Fix concurrent.futures _ThreadWakeup (GH-19760)
authorVictor Stinner <vstinner@python.org>
Wed, 29 Apr 2020 01:32:06 +0000 (03:32 +0200)
committerGitHub <noreply@github.com>
Wed, 29 Apr 2020 01:32:06 +0000 (03:32 +0200)
commita4dfe8ede5a37576e17035dccfe109ba7752237e
tree22879f14b387ac7dc3925f3a460aa0d3866c32b6
parent703647732359200c54f1d2e695cc3a06b9a96c9a
bpo-39995: Fix concurrent.futures _ThreadWakeup (GH-19760)

Fix a race condition in concurrent.futures._ThreadWakeup: access to
_ThreadWakeup is now protected with the shutdown lock.
Lib/concurrent/futures/process.py
Misc/NEWS.d/next/Library/2020-04-28-18-25-27.bpo-39995.WmA3Gk.rst [new file with mode: 0644]