mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
9 lines
103 B
Python
9 lines
103 B
Python
def func():
|
|
pass
|
|
|
|
|
|
def local():
|
|
x = True
|
|
def nested():
|
|
nonlocal x
|
|
x = False |