Created
December 3, 2015 15:22
-
-
Save nrtkbb/0c0728491e95b9c76888 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def report(func): | |
def _report(*args, **kw): | |
# get time now | |
result = func(args, kw) | |
# get time now | |
# report to db or something. | |
return result | |
return _return |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import report_decorator | |
@report_decorator.report | |
def some_func(): | |
# do something | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment