mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
12 lines
162 B
Python
12 lines
162 B
Python
def foo(f):
|
|
x = 1
|
|
x = bar(f, x)
|
|
return x
|
|
|
|
|
|
def bar(f_new, x_new):
|
|
try:
|
|
x_new = f_new()
|
|
except Exception:
|
|
pass
|
|
return x_new |