snippet.py 215 B

12345678910
  1. class classproperty:
  2. """自定义描述符实现类属性"""
  3. def __init__(self, method):
  4. self.method = method
  5. def __get__(self, instance, cls):
  6. return self.method(cls)