Skip to content

Instantly share code, notes, and snippets.

@Zheaoli
Created December 20, 2018 17:54
Show Gist options
  • Save Zheaoli/f2a098bbeff4282012a0913b87b28d55 to your computer and use it in GitHub Desktop.
Save Zheaoli/f2a098bbeff4282012a0913b87b28d55 to your computer and use it in GitHub Desktop.
class BaseMetaClass(type):
"""
装饰器元类
"""
def __new__(mcs, name, bases, namespace):
namespace['get_data'] = cache_wrap(namespace['get_data'])
return super().__new__(mcs, name, bases, namespace)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment