diff options
author | Victor Stinner <vstinner@python.org> | 2019-12-18 14:50:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-18 14:50:04 (GMT) |
commit | 673c39331f844a80c465efd7cff88ac55c432bfb (patch) | |
tree | ffe6991c48bf6cb4364196c01533a16e01bda51d /Misc | |
parent | 75bb07e92baa7267a61056d03d7e6b475588e793 (diff) | |
download | cpython-673c39331f844a80c465efd7cff88ac55c432bfb.zip cpython-673c39331f844a80c465efd7cff88ac55c432bfb.tar.gz cpython-673c39331f844a80c465efd7cff88ac55c432bfb.tar.bz2 |
bpo-38546: Fix concurrent.futures test_ressources_gced_in_workers() (GH-17652)
Fix test_ressources_gced_in_workers() of test_concurrent_futures:
explicitly stop the manager to prevent leaking a child process
running in the background after the test completes.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2019-12-18-14-52-08.bpo-38546.2kxNuM.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2019-12-18-14-52-08.bpo-38546.2kxNuM.rst b/Misc/NEWS.d/next/Tests/2019-12-18-14-52-08.bpo-38546.2kxNuM.rst new file mode 100644 index 0000000..d8ec7ca --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2019-12-18-14-52-08.bpo-38546.2kxNuM.rst @@ -0,0 +1,3 @@ +Fix test_ressources_gced_in_workers() of test_concurrent_futures: explicitly +stop the manager to prevent leaking a child process running in the background +after the test completes. |