You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
being able to use async with <multi-line-tuple> style as per this comment on the new streaming api stuff, namely being able to do the following which doesn't seem to be documented anywhere as a new syntax in 3.9?
UPDATE: looks like they did document it in 3.10 as parenthesized context managers:
asyncwith (
mngasblah0,
blah0asblah1,
):
# stuff
The text was updated successfully, but these errors were encountered:
Once we get to pinning to 3.9+ this is what i'm hoping to leverage:
__file__
will likely make some of the post spawn module loading code simplerasync with <multi-line-tuple>
style as per this comment on the new streaming api stuff, namely being able to do the following which doesn't seem to be documented anywhere as a new syntax in 3.9?The text was updated successfully, but these errors were encountered: