(self)
| 1572 | (1,0,0), (1,0,1), (1,1,0), (1,1,1)]) |
| 1573 | |
| 1574 | def test_repeat(self): |
| 1575 | self.assertEqual(list(repeat(10, 3)), [10, 10, 10]) |
| 1576 | |
| 1577 | def test_stapmap(self): |
| 1578 | self.assertEqual(list(starmap(pow, [(2,5), (3,2), (10,3)])), |
nothing calls this directly
no test coverage detected