(user_function)
| 516 | 'Expected first argument to be an integer, a callable, or None') |
| 517 | |
| 518 | def decorating_function(user_function): |
| 519 | wrapper = _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo) |
| 520 | wrapper.cache_parameters = lambda : {'maxsize': maxsize, 'typed': typed} |
| 521 | return update_wrapper(wrapper, user_function) |
| 522 | |
| 523 | return decorating_function |
| 524 |
nothing calls this directly
no test coverage detected