(func, key_data)
| 277 | |
| 278 | @staticmethod |
| 279 | def has(func, key_data): |
| 280 | _create_cache_directory_if_not_exists(func) |
| 281 | path = _get_cache_path(func, key_data) |
| 282 | return _has(path) |
| 283 | |
| 284 | @staticmethod |
| 285 | def get(func, key_data, raise_exception=True): |
no test coverage detected