(self, value)
| 7901 | def test_subclassing_async_generator(self): |
| 7902 | class G(typing.AsyncGenerator[int, int]): |
| 7903 | def asend(self, value): |
| 7904 | pass |
| 7905 | def athrow(self, typ, val=None, tb=None): |
| 7906 | pass |
| 7907 |
no outgoing calls
no test coverage detected