Skip to content

Instantly share code, notes, and snippets.

@max107
Created November 25, 2013 22:30
Show Gist options
  • Save max107/7650073 to your computer and use it in GitHub Desktop.
Save max107/7650073 to your computer and use it in GitHub Desktop.
# coding=utf-8
def wrap(func):
def wrapped_func(*args, **kwargs):
print('hello world')
return func(*args, **kwargs)
return wrapped_func
@wrap
def test(*args, **kwargs):
pass
test()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment