(self)
| 2913 | self.assertEqual(self._coroutinestate(), inspect.CORO_CREATED) |
| 2914 | |
| 2915 | def test_suspended(self): |
| 2916 | self.coroutine.send(None) |
| 2917 | self.assertEqual(self._coroutinestate(), inspect.CORO_SUSPENDED) |
| 2918 | |
| 2919 | def test_closed_after_exhaustion(self): |
| 2920 | while True: |
nothing calls this directly
no test coverage detected