Unravelling the `async with` statement
I already covered unravelling the with
statement, and async with
is not much different. Much like with
, the language reference for async with
gives an example of the statement already destructured. Based on that and the fact that async with
is just with
with asynchronous versions of __enter__
and __exit__
(__aenter__
and __aexit__
, respectively), I'm just going to jump straight to the unravelled version and keep this post short.
becomes:
It's with
unravelled but changed by:
__enter__
to__aenter__
.__exit__
to__aexit__
.- All calls to those methods being preceded with
await
.