mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
8 lines
104 B
Python
8 lines
104 B
Python
def f():
|
|
a = 1
|
|
b = 1
|
|
c = plus(a, b)
|
|
|
|
|
|
def plus(a_new, b_new):
|
|
return a_new + b_new * 123 |