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