diff options
author | Antoine Pitrou <pitrou@free.fr> | 2017-06-13 15:10:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-13 15:10:39 (GMT) |
commit | 1eb6c0074d17f4fd425cacfdda893d65f5f77f0a (patch) | |
tree | 11ecee463d518e10ddfbbd28e01f44dd13e3fb14 /Misc/NEWS | |
parent | 8323189ff1a19566f923c04b95e4d17fa57d1f56 (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |