(self)
| 877 | ]) |
| 878 | |
| 879 | def test_yield_from_empty(self): |
| 880 | def g(): |
| 881 | yield from () |
| 882 | self.assertRaises(StopIteration, next, g()) |
| 883 | |
| 884 | def test_delegating_generators_claim_to_be_running(self): |
| 885 | # Check with basic iteration |
nothing calls this directly
no test coverage detected