We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Activity