class documentation

class cached_property(object):

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):

Undocumented

def __init__(self, func):

Undocumented

func =

Undocumented