summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2018-12-18 22:54:33 (GMT)
committerGitHub <noreply@github.com>2018-12-18 22:54:33 (GMT)
commit6cdce3ddef805e11d75142f3e20e23c3fe21fdf4 (patch)
tree35d1df305a3c5a1332b8ab73d14f1b533afe0641 /Misc/NEWS.d
parent05c9d31eb62cc45dc3c55a5cdb7cbc713d0421db (diff)
downloadcpython-6cdce3ddef805e11d75142f3e20e23c3fe21fdf4.zip
cpython-6cdce3ddef805e11d75142f3e20e23c3fe21fdf4.tar.gz
cpython-6cdce3ddef805e11d75142f3e20e23c3fe21fdf4.tar.bz2
bpo-35424: Fix test_multiprocessing_main_handling (GH-11223)
Fix test_multiprocessing_main_handling: use multiprocessing.Pool with a context manager and then explicitly join the pool.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Tests/2018-12-18-22-36-53.bpo-35424.1Pz4IS.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2018-12-18-22-36-53.bpo-35424.1Pz4IS.rst b/Misc/NEWS.d/next/Tests/2018-12-18-22-36-53.bpo-35424.1Pz4IS.rst
new file mode 100644
index 0000000..461f636
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2018-12-18-22-36-53.bpo-35424.1Pz4IS.rst
@@ -0,0 +1,2 @@
+Fix test_multiprocessing_main_handling: use :class:`multiprocessing.Pool` with
+a context manager and then explicitly join the pool.