Skip to content

Instantly share code, notes, and snippets.

@lgliducik
Created November 22, 2015 16:58
Show Gist options
  • Save lgliducik/41f1162992f28c30e4fd to your computer and use it in GitHub Desktop.
Save lgliducik/41f1162992f28c30e4fd to your computer and use it in GitHub Desktop.
test_decorator.py
def p(func):
def new_func(*args, **kwargs):
ret = func(*args, **kwargs)
print(ret)
return ret
return new_func
###############################33
@p
def another_func(x):
return x + 1
another_func(123)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment