(self)
| 196 | |
| 197 | # Test for loop on a sequence class without __iter__ |
| 198 | def test_seq_class_for(self): |
| 199 | self.check_for_loop(SequenceClass(10), list(range(10))) |
| 200 | |
| 201 | # Test iter() on a sequence class without __iter__ |
| 202 | def test_seq_class_iter(self): |
nothing calls this directly
no test coverage detected