0 bookmark(s) - Sort by: Date ↓ / Title / - Bookmarks from other users for this tag
from contextlib import contextmanager
@contextmanager def f(x): try: yield x finally: pass
with f('c') as a, f('a') as b: pass
with f('c') as a, f('a') as b, f('a') as c: pass
First / Previous / Next / Last
/ Page 1 of 0