mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
11 lines
88 B
Python
11 lines
88 B
Python
def bar():
|
|
a = 1
|
|
b = 2
|
|
|
|
foo(a)
|
|
foo(b)
|
|
|
|
|
|
def foo(a_new):
|
|
print a_new
|