class documentation

class memoized_instancemethod: (source)

View In Hierarchy

Decorate a method memoize its return value. Best applied to no-arg methods: memoization is not sensitive to argument values, and will always return the same value even when called with different arguments.

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

Undocumented

def __init__(self, fget, doc=None): (source)

Undocumented

__name__ = (source)

Undocumented

Undocumented