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.
10 lines
107 B
Python
10 lines
107 B
Python
def main(indices):
|
|
foo = True
|
|
bar()
|
|
return foo
|
|
|
|
|
|
def bar():
|
|
if 11 > 4:
|
|
print('ok')
|