(self, typ, val=None, tb=None)
| 1271 | async def aclose(self): pass |
| 1272 | async def asend(self, value): return value |
| 1273 | async def athrow(self, typ, val=None, tb=None): pass |
| 1274 | |
| 1275 | class MinimalAGen(AsyncGenerator): |
| 1276 | async def asend(self, value): |