Created
August 14, 2017 06:55
-
-
Save kunpengku/c0fd3c906b8b80254ccfc3a64a1d979c 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
_functions = {} | |
def register(f): | |
global _functions | |
_functions[f.__name__] = f | |
return f | |
@register | |
def foo(): | |
return 'bar' | |
print _functions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment