Package memtools :: Module pattern :: Class memorize
[hide private]

Class memorize

source code


The memorize decorator takes a Memory (or Memory-compatible) object and masks the Memorized decorator to keep the original signature clean.

Use of this decorator is deprecated since Memory objects implement the same functionality in their __call__ methods.

Instance Methods [hide private]
 
__init__(self, memory, debug=False)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__call__(self, f) source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, memory, debug=False)
(Constructor)

source code 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: object.__init__
(inherited documentation)