diff options
author | Ross Lagerwall <rosslagerwall@gmail.com> | 2012-01-08 06:29:40 (GMT) |
---|---|---|
committer | Ross Lagerwall <rosslagerwall@gmail.com> | 2012-01-08 06:29:40 (GMT) |
commit | 66e2fb68aca2a2678a327b200e657b761f358bc1 (patch) | |
tree | f5037c0da90ca27dd2977d30fb8fb29ae8394431 /Misc | |
parent | 645a0dd6f79004652c52ae9d7246d1b219772588 (diff) | |
download | cpython-66e2fb68aca2a2678a327b200e657b761f358bc1.zip cpython-66e2fb68aca2a2678a327b200e657b761f358bc1.tar.gz cpython-66e2fb68aca2a2678a327b200e657b761f358bc1.tar.bz2 |
Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -97,6 +97,10 @@ Core and Builtins Library ------- +- Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor. + The hang would occur when retrieving the result of a scheduled future after + the executor had been shut down. + - Issue #13502: threading: Fix a race condition in Event.wait() that made it return False when the event was set and cleared right after. |