mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
9 lines
98 B
Python
9 lines
98 B
Python
def foo():
|
|
def f(x):
|
|
return x
|
|
|
|
return bar(f)
|
|
|
|
|
|
def bar(f_new):
|
|
return f_new(1) |