(self)
| 1620 | (1,0,0), (1,0,1), (1,1,0), (1,1,1)]) |
| 1621 | |
| 1622 | def test_repeat(self): |
| 1623 | self.assertEqual(list(repeat(10, 3)), [10, 10, 10]) |
| 1624 | |
| 1625 | def test_stapmap(self): |
| 1626 | self.assertEqual(list(starmap(pow, [(2,5), (3,2), (10,3)])), |
nothing calls this directly
no test coverage detected