summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/tests/try1.py
blob: b3b85372d7f21966327e35368a1e9fc852950596 (plain) (blame)
1
2
3
4
5
6
# basic exceptions
x = 1
try:
    x.a()
except:
    print(x)