summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/try4.py
blob: 412cb74ee5b296059a080994f7adc466d48f7e38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
try:
    f()
except A:
    g()
except:
    h()

try:
    f()
except A:
    g()
except B as c:
    h()

try:
    f()
except A:
    g()
except B as c:
    h()
except:
    i()