(self)
| 3212 | |
| 3213 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3214 | def test_wrapped_exception(self): |
| 3215 | # Issue #20980: Should not wrap exception when using thread pool |
| 3216 | with self.Pool(1) as p: |
| 3217 | with self.assertRaises(RuntimeError): |
| 3218 | p.apply(self._test_wrapped_exception) |
| 3219 | p.join() |
| 3220 | |
| 3221 | @warnings_helper.ignore_fork_in_thread_deprecation_warnings() |
| 3222 | def test_map_no_failfast(self): |
nothing calls this directly
no test coverage detected