mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 18:25:37 +07:00
GitOrigin-RevId: af7099a6ba948c740c8183674b24eeeddf164e70
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 |