summaryrefslogtreecommitdiffstatshomepage
path: root/tests/bytecode/mp-tests/try1.py
blob: 10344c8ae30d4b78b36856ae8d2f91789ce3f592 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
def f(x):
    try:
        f(x)
    except:
        f(x)
    try:
        f(x)
    except Exception:
        f(x)
    try:
        f(x)
    except Exception as e:
        f(x, e)