(self)
| 161 | |
| 162 | # Test that for loops over iterators work |
| 163 | def test_iter_for_loop(self): |
| 164 | self.check_for_loop(iter(range(10)), list(range(10))) |
| 165 | |
| 166 | # Test several independent iterators over the same list |
| 167 | def test_iter_independence(self): |
nothing calls this directly
no test coverage detected