We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1b0cf6 commit cc5f359Copy full SHA for cc5f359
Lib/test/test_concurrent_futures/test_process_pool.py
@@ -1,4 +1,3 @@
1
-import multiprocessing
2
import os
3
import queue
4
import signal
@@ -256,7 +255,7 @@ def test_process_pool_executor_terminate_or_kill_workers_invalid_op(self):
256
255
257
@parameterize(*TERMINATE_OR_KILL_PARAMS)
258
def test_process_pool_executor_terminate_kill_workers(self, function_name):
259
- manager = multiprocessing.Manager()
+ manager = self.get_context().Manager()
260
q = manager.Queue()
261
262
with futures.ProcessPoolExecutor(max_workers=1) as executor:
0 commit comments