Files
codeql/python/extractor/tests/parser/exception_groups_new.py
Taus 2c83b296a4 Python: Add parser test
Note in particular that the `exceptions.py` test is unaffected.
2026-01-06 13:40:38 +00:00

32 lines
248 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
try:
pass
except *foo as e:
pass
try:
pass
except* x, y:
pass