
Partial implementation for #2242. Only works when explicitly stated -t py310. Co-authored-by: Richard Si <63936253+ichard26@users.noreply.github.com>
22 lines
382 B
Python
22 lines
382 B
Python
with (CtxManager() as example):
|
|
...
|
|
|
|
with (CtxManager1(), CtxManager2()):
|
|
...
|
|
|
|
with (CtxManager1() as example, CtxManager2()):
|
|
...
|
|
|
|
with (CtxManager1(), CtxManager2() as example):
|
|
...
|
|
|
|
with (CtxManager1() as example1, CtxManager2() as example2):
|
|
...
|
|
|
|
with (
|
|
CtxManager1() as example1,
|
|
CtxManager2() as example2,
|
|
CtxManager3() as example3,
|
|
):
|
|
...
|