summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <pitrou@free.fr>2017-06-13 15:10:39 (GMT)
committerGitHub <noreply@github.com>2017-06-13 15:10:39 (GMT)
commit1eb6c0074d17f4fd425cacfdda893d65f5f77f0a (patch)
tree11ecee463d518e10ddfbbd28e01f44dd13e3fb14 /Misc/NEWS
parent8323189ff1a19566f923c04b95e4d17fa57d1f56 (diff)
downloadcpython-1eb6c0074d17f4fd425cacfdda893d65f5f77f0a.zip
cpython-1eb6c0074d17f4fd425cacfdda893d65f5f77f0a.tar.gz
cpython-1eb6c0074d17f4fd425cacfdda893d65f5f77f0a.tar.bz2
bpo-24484: Avoid race condition in multiprocessing cleanup (#2159)
* bpo-24484: Avoid race condition in multiprocessing cleanup The finalizer registry can be mutated while inspected by multiprocessing at process exit. * Use test.support.start_threads() * Add Misc/NEWS
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f9aa163..f91695d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -362,6 +362,8 @@ Extension Modules
Library
-------
+- bpo-24484: Avoid race condition in multiprocessing cleanup.
+
- bpo-30589: Fix multiprocessing.Process.exitcode to return the opposite
of the signal number when the process is killed by a signal (instead
of 255) when using the "forkserver" method.