summaryrefslogtreecommitdiff
path: root/python/finally.py
blob: a6f14ab96a6e52632feab85f07192decb8e70a2a (plain)
1
2
3
4
5
6
7
8
9
10
def f():
    try:
        raise Exception
    except:
        return
    finally:
        print("exit")

f()