Skip to content

Instantly share code, notes, and snippets.

@guoqiao
Created September 20, 2016 02:52
Show Gist options
  • Save guoqiao/a7cc90cba0f24216d74edfc3458288c1 to your computer and use it in GitHub Desktop.
Save guoqiao/a7cc90cba0f24216d74edfc3458288c1 to your computer and use it in GitHub Desktop.
example for register decorator
_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