Make key for cache given function arguments.
(*args, **kwargs)
| 34 | return result |
| 35 | |
| 36 | def __cache_key__(*args, **kwargs): |
| 37 | """Make key for cache given function arguments.""" |
| 38 | return args_to_key(base, args, kwargs, typed) |
| 39 | |
| 40 | wrapper.__cache_key__ = __cache_key__ |
| 41 | return wrapper |
nothing calls this directly
no outgoing calls
no test coverage detected