summaryrefslogtreecommitdiff
path: root/tests/examples.py
blob: d7d5ee3dc54ca323c8ad9d1067e66708b307556a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
def func_a(_):
    func_b()

def func_b():
    func_c()

def func_c():
    func_d()

def func_d():
    raise Exception("Guessing time !")