(self)
| 2937 | list(itertools.starmap(mul, tuples))) |
| 2938 | |
| 2939 | def test_starmap_async(self): |
| 2940 | tuples = list(zip(range(100), range(99,-1, -1))) |
| 2941 | self.assertEqual(self.pool.starmap_async(mul, tuples).get(), |
| 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(), |
nothing calls this directly
no test coverage detected