class documentation

class _MetaOptions(type): (source)

View In Hierarchy

metaclass for the Options class. This metaclass is actually necessary despite the availability of the ``__init_subclass__()`` hook as this type also provides custom class-level behavior for the ``__add__()`` method.

Method __add__ Undocumented
Method __delattr__ Undocumented
Method __getattr__ Undocumented
Method __setattr__ Undocumented
Class Variable _cache_attrs Undocumented
def __add__(self, other): (source)

Undocumented

def __delattr__(self, key: str): (source)

Undocumented

def __getattr__(self, key: str) -> Any: (source)

Undocumented

def __setattr__(self, key: str, value: Any): (source)

Undocumented

_cache_attrs: Tuple[str, ...] = (source)

Undocumented