Immediately unwind the context stack.
(self)
| 690 | return callback # Allow use as a decorator |
| 691 | |
| 692 | async def aclose(self): |
| 693 | """Immediately unwind the context stack.""" |
| 694 | await self.__aexit__(None, None, None) |
| 695 | |
| 696 | async def __aenter__(self): |
| 697 | return self |