(user_function)
| 595 | 'Expected first argument to be an integer, a callable, or None') |
| 596 | |
| 597 | def decorating_function(user_function): |
| 598 | wrapper = _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo) |
| 599 | wrapper.cache_parameters = lambda : {'maxsize': maxsize, 'typed': typed} |
| 600 | return update_wrapper(wrapper, user_function) |
| 601 | |
| 602 | return decorating_function |
| 603 |
nothing calls this directly
no test coverage detected
searching dependent graphs…