diff options
Diffstat (limited to 'Misc/NEWS.d/next/Library/2019-01-21-02-15-20.bpo-35378.4oF03i.rst')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-01-21-02-15-20.bpo-35378.4oF03i.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-01-21-02-15-20.bpo-35378.4oF03i.rst b/Misc/NEWS.d/next/Library/2019-01-21-02-15-20.bpo-35378.4oF03i.rst new file mode 100644 index 0000000..bb57f71 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-01-21-02-15-20.bpo-35378.4oF03i.rst @@ -0,0 +1,6 @@ +Fix a reference issue inside :class:`multiprocessing.Pool` that caused +the pool to remain alive if it was deleted without being closed or +terminated explicitly. A new strong reference is added to the pool +iterators to link the lifetime of the pool to the lifetime of its +iterators so the pool does not get destroyed if a pool iterator is +still alive. |