(self)
| 330 | |
| 331 | # Test two-argument iter() with callable instance |
| 332 | def test_iter_callable(self): |
| 333 | self.check_iterator(iter(CallableIterClass(), 10), list(range(10)), pickle=True) |
| 334 | |
| 335 | # Test two-argument iter() with function |
| 336 | def test_iter_function(self): |
nothing calls this directly
no test coverage detected