Files

7 lines
117 B
Python

def foo(f):
x = 1
<selection>try:
x = f()
except Exception:
pass</selection>
return x