summaryrefslogtreecommitdiff
path: root/puzzles/tricky_try_except.py
blob: de829c3035f619cad11342bea3d88c041e501001 (plain)
1
2
3
4
5
6
7
8
def foo():
    file = None
    try:
        file = open('test.json')
    except Exception:
        pass

    file.name # error