mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 01:41:11 +07:00
9 lines
118 B
Python
9 lines
118 B
Python
def f(g):
|
|
try:
|
|
x = g()
|
|
except Exception:
|
|
x = g()
|
|
finally:
|
|
pass
|
|
print(x) #pass
|