mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
12 lines
131 B
Python
12 lines
131 B
Python
def f():
|
|
a = 1
|
|
while a < 10:
|
|
a = bar(a)
|
|
print(a)
|
|
|
|
|
|
def bar(a_new):
|
|
do_smth
|
|
a_new += 1
|
|
return a_new
|