diff options
author | Antoine Pitrou <pitrou@free.fr> | 2017-06-13 15:51:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-13 15:51:26 (GMT) |
commit | 6fd03459957ee53941183212457bba19f977679f (patch) | |
tree | 898b2287cfe478651f905b6773cf9d7b329d2f69 /Misc | |
parent | 2bfb45d447c445b3c3afc19d16b4cd4773975993 (diff) | |
download | cpython-6fd03459957ee53941183212457bba19f977679f.zip cpython-6fd03459957ee53941183212457bba19f977679f.tar.gz cpython-6fd03459957ee53941183212457bba19f977679f.tar.bz2 |
[3.6] bpo-24484: Avoid race condition in multiprocessing cleanup (GH-2159) (#2166)
* 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.
(cherry picked from commit 1eb6c0074d17f4fd425cacfdda893d65f5f77f0a)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -51,6 +51,8 @@ Core and Builtins Library ------- +- bpo-24484: Avoid race condition in multiprocessing cleanup (#2159) + - bpo-28994: The traceback no longer displayed for SystemExit raised in a callback registered by atexit. |