mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
11 lines
138 B
Python
11 lines
138 B
Python
def f():
|
|
a = 1
|
|
b = 1
|
|
foo(a, b)
|
|
|
|
|
|
def foo(a_new, b_new):
|
|
puts(a_new + b_new * 123)
|
|
print("Hello from extract method")
|
|
|