(self)
| 2942 | list(itertools.starmap(mul, tuples))) |
| 2943 | |
| 2944 | def test_map_async(self): |
| 2945 | self.assertEqual(self.pool.map_async(sqr, list(range(10))).get(), |
| 2946 | list(map(sqr, list(range(10))))) |
| 2947 | |
| 2948 | def test_map_async_callbacks(self): |
| 2949 | call_args = self.manager.list() if self.TYPE == 'manager' else [] |
nothing calls this directly
no test coverage detected