summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/try6.py
blob: d5b68722e95a4cb6eb674b8ce59f5ee7c3f02f89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
try:
    f()
except:
    g()
else:
    h()

try:
    f()
except:
    g()
else:
    h()
finally:
    i()