Skip to content

Instantly share code, notes, and snippets.

@rec
Last active July 12, 2020 09:42
Show Gist options
  • Save rec/24cc48111a77b8ef829d80c3f8523a62 to your computer and use it in GitHub Desktop.
Save rec/24cc48111a77b8ef829d80c3f8523a62 to your computer and use it in GitHub Desktop.
dek 2
import functools
def print_before(func):
@functools.wraps(func)
def wrapped(*args, **kwds):
print(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