(self, value)
| 7820 | def test_subclassing_async_generator(self): |
| 7821 | class G(typing.AsyncGenerator[int, int]): |
| 7822 | def asend(self, value): |
| 7823 | pass |
| 7824 | def athrow(self, typ, val=None, tb=None): |
| 7825 | pass |
| 7826 |
no outgoing calls
no test coverage detected