mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +07:00
7 lines
217 B
Python
7 lines
217 B
Python
def <info descr="PY.FUNC_DEFINITION">outer</info>():
|
|
x = "John"
|
|
def <info descr="PY.NESTED_FUNC_DEFINITION">inner</info>():
|
|
nonlocal x
|
|
x = "hello"
|
|
<info descr="PY.FUNCTION_CALL">inner</info>()
|
|
return x |