(self)
| 1977 | self.makecycle(chain(a), a) |
| 1978 | |
| 1979 | def test_chain_from_iterable(self): |
| 1980 | a = [] |
| 1981 | self.makecycle(chain.from_iterable([a]), a) |
| 1982 | |
| 1983 | def test_combinations(self): |
| 1984 | a = [] |
nothing calls this directly
no test coverage detected