| 1273 | async def athrow(self, typ, val=None, tb=None): pass |
| 1274 | |
| 1275 | class MinimalAGen(AsyncGenerator): |
| 1276 | async def asend(self, value): |
| 1277 | return value |
| 1278 | async def athrow(self, typ, val=None, tb=None): |
| 1279 | await super().athrow(typ, val, tb) |
| 1280 | |
| 1281 | async def gen(): |
| 1282 | yield 1 |
no outgoing calls
searching dependent graphs…