Skip to content

Instantly share code, notes, and snippets.

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