For the following function:
def my_func(x, y): if y < 0: q = my_func(x, (y*-1)) else: q = my_func(x,y) return q(x, y) p