(self)
| 340 | self.compare_generators(sync_gen(), async_gen()) |
| 341 | |
| 342 | def test_async_gen_exception_10(self): |
| 343 | async def gen(): |
| 344 | yield 123 |
| 345 | with self.assertRaisesRegex(TypeError, |
| 346 | "non-None value .* async generator"): |
| 347 | gen().__anext__().send(100) |
| 348 | |
| 349 | def test_async_gen_exception_11(self): |
| 350 | def sync_gen(): |
nothing calls this directly
no test coverage detected