I have some function
def func(x, y)
and I want to write a decorator so that when I call it like so
func(a.b.c, d)
the input arguments are modified so that it's actually calling it like
func(a.b.c, a.b.c.d)
For this function specifically, I want the second argument to implicitly have the first argument pre-pended.