(self)
| 2910 | return inspect.getcoroutinestate(self.coroutine) |
| 2911 | |
| 2912 | def test_created(self): |
| 2913 | self.assertEqual(self._coroutinestate(), inspect.CORO_CREATED) |
| 2914 | |
| 2915 | def test_suspended(self): |
| 2916 | self.coroutine.send(None) |
nothing calls this directly
no test coverage detected