We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
thought about something like this.
def add42(fn): def wrap(i): return fn(i) + 42 wrap.unwrapped = fn return wrap @add42 def mult3(i): return i * 3 mult3(1) # 45 mult3.unwrapped(1) # 3