(self)
| 737 | coro.close() # avoid RuntimeWarning |
| 738 | |
| 739 | def test_func_12(self): |
| 740 | async def g(): |
| 741 | me.send(None) |
| 742 | await foo |
| 743 | me = g() |
| 744 | with self.assertRaisesRegex(ValueError, |
| 745 | "coroutine already executing"): |
| 746 | me.send(None) |
| 747 | |
| 748 | def test_func_13(self): |
| 749 | async def g(): |
nothing calls this directly
no test coverage detected