(self)
| 200 | |
| 201 | # Test iter() on a sequence class without __iter__ |
| 202 | def test_seq_class_iter(self): |
| 203 | self.check_iterator(iter(SequenceClass(10)), list(range(10))) |
| 204 | |
| 205 | def test_mutating_seq_class_iter_pickle(self): |
| 206 | orig = SequenceClass(5) |
nothing calls this directly
no test coverage detected