(self)
| 743 | me.send(None) |
| 744 | |
| 745 | def test_func_13(self): |
| 746 | async def g(): |
| 747 | pass |
| 748 | |
| 749 | coro = g() |
| 750 | with self.assertRaisesRegex( |
| 751 | TypeError, |
| 752 | "can't send non-None value to a just-started coroutine"): |
| 753 | coro.send('spam') |
| 754 | |
| 755 | coro.close() |
| 756 | |
| 757 | def test_func_14(self): |
| 758 | @types.coroutine |
nothing calls this directly
no test coverage detected