Files
codeql/python/extractor/tests/parser/exception_groups_new.py

22 lines
168 B
Python

try:
a
b
except* c:
d
e
except* f as g:
h
i
except* (j, k):
l
m
except* (n, o) as p:
q
r
else:
s
t
finally:
u
v