(self)
| 150 | |
| 151 | # Test basic use of iter() function |
| 152 | def test_iter_basic(self): |
| 153 | self.check_iterator(iter(range(10)), list(range(10))) |
| 154 | |
| 155 | # Test that iter(iter(x)) is the same as iter(x) |
| 156 | def test_iter_idempotency(self): |
nothing calls this directly
no test coverage detected