nazarewk / keyring_pass

Password Store (pass) backend for python's keyring
MIT License
19 stars 5 forks source link

Use functools.lru_cache when functools.cache is not available #11

Closed bo5o closed 1 year ago

bo5o commented 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).