class documentation

class memoized_instancemethod(object):

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

Undocumented

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

Undocumented

__name__ =

Undocumented

fget =

Undocumented