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