mirror of
https://github.com/github/codeql.git
synced 2026-02-12 21:21:16 +01:00
32 lines
248 B
Python
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
|