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