Simple lightweight unbounded cache. Sometimes called "memoize".
(user_function, /)
| 649 | ################################################################################ |
| 650 | |
| 651 | def cache(user_function, /): |
| 652 | 'Simple lightweight unbounded cache. Sometimes called "memoize".' |
| 653 | return lru_cache(maxsize=None)(user_function) |
| 654 | |
| 655 | |
| 656 | ################################################################################ |