mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 17:15:38 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
11 lines
100 B
Python
11 lines
100 B
Python
def foo(x):
|
|
bar()
|
|
return x
|
|
|
|
|
|
def bar():
|
|
try:
|
|
print(1)
|
|
finally:
|
|
pass
|