mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
11 lines
138 B
Python
11 lines
138 B
Python
import contextlib
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def manager():
|
|
yield 1, 2
|
|
|
|
|
|
def func():
|
|
with manager() as (_, b):
|
|
print(42) |