mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
10 lines
108 B
Python
10 lines
108 B
Python
def foo(c):
|
|
x = 1
|
|
bar(c)
|
|
# Comment
|
|
return x
|
|
|
|
|
|
def bar(c_new):
|
|
if c_new:
|
|
print(1) |