summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/try_error.py
blob: ca2a6f2030c0238224af87613c0bd8ddd3be652a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# test bad exception match

try:
    try:
        a
    except 1:
        pass
except TypeError:
    print("TypeError")

try:
    try:
        a
    except (1,):
        pass
except TypeError:
    print("TypeError")