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.
11 lines
99 B
Python
11 lines
99 B
Python
def bar():
|
|
a = foo()
|
|
print a
|
|
a = foo()
|
|
print a
|
|
|
|
|
|
def foo():
|
|
a = 1
|
|
return a
|