mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
13 lines
136 B
Python
13 lines
136 B
Python
from contextlib import contextmanager
|
|
|
|
|
|
@contextmanager
|
|
def mycm():
|
|
pass
|
|
yield
|
|
pass
|
|
|
|
|
|
@mycm()
|
|
def decorated_func():
|
|
pass |