(self)
| 2684 | list(itertools.starmap(mul, tuples))) |
| 2685 | |
| 2686 | def test_map_async(self): |
| 2687 | self.assertEqual(self.pool.map_async(sqr, list(range(10))).get(), |
| 2688 | list(map(sqr, list(range(10))))) |
| 2689 | |
| 2690 | def test_map_async_callbacks(self): |
| 2691 | call_args = self.manager.list() if self.TYPE == 'manager' else [] |
nothing calls this directly
no test coverage detected