12345678910111213141516171819202122232425262728293031 |
- class TestClass:
- DEFAULT_TITLE: str = 'DEFAULT TITLE'
- DEFAULT_STRING_MAX_LENGTH:int = 10
- def __init__(self):
- pass
- def __call__(self, *args, **kwargs):
- pass
- def __repr__(self):
- pass
- @classmethod
- def some_class_method(cls):
- pass
- @staticmethod
- def some_static_method():
- pass
- # private method
- def _some_private_method(self):
- pass
- # instance method
- def build(self):
- pass
|