(self)
| 2679 | list(itertools.starmap(mul, tuples))) |
| 2680 | |
| 2681 | def test_starmap_async(self): |
| 2682 | tuples = list(zip(range(100), range(99,-1, -1))) |
| 2683 | self.assertEqual(self.pool.starmap_async(mul, tuples).get(), |
| 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(), |
nothing calls this directly
no test coverage detected