I'm not sure if this is possible, but I'm just wondering if I have code of the form:
def f1()
return f2()
def f2()
print(this.calling_function())
What can I put in this.calling_function()
to get it to print f1
as the answer?
(In other words, how can I go one level up in the stack trace).