Skip to content

Instantly share code, notes, and snippets.

@guillaumepiot
Last active December 16, 2015 22:49
Show Gist options
  • Save guillaumepiot/5509760 to your computer and use it in GitHub Desktop.
Save guillaumepiot/5509760 to your computer and use it in GitHub Desktop.
PYTHON - Decorator with no arguments
def wrap(f):
def wrapped_f(*args):
return f(*args)
return wrapped_f
# Example
# @wrap
# def my_function():
# pass
#
# Or
# my_function = wrap(my_function)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment