Closed bo5o closed 1 year ago
functools.cache was introduced in Python 3.9. On older Python versions, functools.lru_cache(maxsize=None) can be used instead (see official docs).
functools.cache
functools.lru_cache(maxsize=None)
functools.cache
was introduced in Python 3.9. On older Python versions,functools.lru_cache(maxsize=None)
can be used instead (see official docs).