class documentation

class _DictAccessorProperty(t.Generic[_TAccessorValue]):

View In Hierarchy

Baseclass for environ_property and header_property.
Method __delete__ Undocumented
Method __get__ Undocumented
Method __init__ Undocumented
Method __repr__ Undocumented
Method __set__ Undocumented
Method lookup Undocumented
Instance Variable default Undocumented
Instance Variable dump​_func Undocumented
Instance Variable load​_func Undocumented
Instance Variable name Undocumented
Instance Variable read​_only Undocumented
def __delete__(self, instance):

Undocumented

Parameters
instance:t.AnyUndocumented
def __get__(self, instance, owner):

Undocumented

Parameters
instance:t.Optional[t.Any]Undocumented
owner:typeUndocumented
Returns
t.Union[_TAccessorValue, _DictAccessorProperty[_TAccessorValue]]Undocumented
def __init__(self, name, default=None, load_func=None, dump_func=None, read_only=None, doc=None):

Undocumented

Parameters
name:strUndocumented
default:t.Optional[_TAccessorValue]Undocumented
load​_func:t.Optional[t.Callable[[str], _TAccessorValue]]Undocumented
dump​_func:t.Optional[t.Callable[[_TAccessorValue], str]]Undocumented
read​_only:t.Optional[bool]Undocumented
doc:t.Optional[str]Undocumented
def __repr__(self):

Undocumented

Returns
strUndocumented
def __set__(self, instance, value):

Undocumented

Parameters
instance:t.AnyUndocumented
value:_TAccessorValueUndocumented
def lookup(self, instance):

Undocumented

Parameters
instance:t.AnyUndocumented
Returns
t.MutableMapping[str, t.Any]Undocumented
default =

Undocumented

dump_func =

Undocumented

load_func =

Undocumented

name =

Undocumented

read_only =

Undocumented