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.
12 lines
165 B
Python
12 lines
165 B
Python
def f():
|
|
a = do_smth()
|
|
b1 = foo(a)
|
|
a = do_smth()
|
|
b = foo(a + 1)
|
|
do_smth_with(b1, b)
|
|
|
|
|
|
def foo(a_new):
|
|
b1 = do_smth_with(a_new)
|
|
return b1
|