Public Member Functions | |
| def | __call__ |
| def | __get__ |
| def | __init__ |
| def | __repr__ |
Public Attributes | |
| cache | |
| func | |
Decorator. Caches a function's return value each time it is called. If called later with the same arguments, the cached value is returned (not reevaluated). From: https://wiki.python.org/moin/PythonDecoratorLibrary#Memoize
| def assetQC.api.config.memoized.__init__ | ( | self, | |
| func | |||
| ) |
| def assetQC.api.config.memoized.__call__ | ( | self, | |
| args | |||
| ) |

| def assetQC.api.config.memoized.__get__ | ( | self, | |
| obj, | |||
| objtype | |||
| ) |
Support instance methods.

| def assetQC.api.config.memoized.__repr__ | ( | self | ) |
Return the function's docstring.
1.7.6.1