Skip to content

Instantly share code, notes, and snippets.

@xin053
Last active July 4, 2019 07:49
Show Gist options
  • Save xin053/c02c680d5e6b008871caa8d0472c527d to your computer and use it in GitHub Desktop.
Save xin053/c02c680d5e6b008871caa8d0472c527d to your computer and use it in GitHub Desktop.
[python 装饰器]注册装饰器 #python #装饰器
_functions = {}
def register(f):
global _functions
_functions[f.__name__] = f
return f
@register
def foo():
return 'bar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment