Files
codeql/python/ql/test/library-tests/stmts/try_stmt/test.py
2018-11-19 15:15:54 +00:00

20 lines
273 B
Python

def f():
try:
call()
try:
nested()
except Exception:
return 1
except:
return 2
try:
call2()
except Exception:
return 2
try:
call3a()
finally:
call3b()