mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 04:45:04 +07:00
9 lines
161 B
Python
9 lines
161 B
Python
def outer1():
|
|
s = "aba"
|
|
|
|
def outer2():
|
|
def inner1():
|
|
nonlocal s
|
|
# <ref>
|
|
def inner2():
|
|
global s |