summaryrefslogtreecommitdiff
path: root/python/testData/keywordCompletion/finallyInElse.py
blob: 5f170c7c26d19e1a1654e8c380f913c64104a93e (plain)
1
2
3
4
5
6
7
8
def f():
    try:
        a = 1
    except:
        b = 1
    else:
        c = 1
        fin<caret>