Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Lib/test/_test_multiprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -2522,6 +2522,7 @@ def test_wrapped_exception(self):
with self.Pool(1) as p:
with self.assertRaises(RuntimeError):
p.apply(self._test_wrapped_exception)
p.join()

def test_map_no_failfast(self):
# Issue #23992: the fail-fast behaviour when an exception is raised
Expand Down Expand Up @@ -2557,6 +2558,7 @@ def test_release_task_refs(self):
# they were released too.
self.assertEqual(CountedObject.n_instances, 0)

@support.reap_threads
def test_del_pool(self):
p = self.Pool(1)
wr = weakref.ref(p)
Expand Down