Lines Matching refs:user_function
510 user_function, maxsize = maxsize, 128
511 wrapper = _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo)
513 return update_wrapper(wrapper, user_function)
518 def decorating_function(user_function): argument
519 wrapper = _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo)
521 return update_wrapper(wrapper, user_function)
525 def _lru_cache_wrapper(user_function, maxsize, typed, _CacheInfo): argument
546 result = user_function(*args, **kwds)
560 result = user_function(*args, **kwds)
584 result = user_function(*args, **kwds)
651 def cache(user_function, /): argument
653 return lru_cache(maxsize=None)(user_function)