mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
13 lines
151 B
Python
13 lines
151 B
Python
def foo():
|
|
x = 1
|
|
def bar():
|
|
nonlocal x
|
|
baz()
|
|
print(x)
|
|
|
|
def baz():
|
|
nonlocal x
|
|
x = 2
|
|
|
|
bar()
|
|
foo() |