summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/try5.py
blob: 7ba7949125e8e17f56e523c768036d1c8d6a8bde (plain) (blame)
1
2
3
4
5
6
7
8
try:
    f()
except A:
    g()
except B as b:
    h()
finally:
    i()