Skip to content

Instantly share code, notes, and snippets.

@rec
Created July 12, 2020 09:43
Show Gist options
  • Save rec/d4d6c9939389145935fbbd7c6b3081c7 to your computer and use it in GitHub Desktop.
Save rec/d4d6c9939389145935fbbd7c6b3081c7 to your computer and use it in GitHub Desktop.
# WRONG
def print_before(func, label):
@functools.wraps(func)
def wrapped(*args, **kwds):
print(label, func.__name__, args, kwds)
return func(*args, **kwds)
return wrapped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment