class documentation

class cached_property(object): (source)

View In Hierarchy

A property that is only computed once per instance and then replaces itself with an ordinary attribute. Deleting the attribute resets the property.

Method __get__ Undocumented
Method __init__ Undocumented
Instance Variable func Undocumented
def __get__(self, obj, cls): (source)

Undocumented

def __init__(self, func): (source)

Undocumented

Undocumented