Files @ 70b995be6712
Branch filter:

Location: Shamira/src/shamira/util.py - annotation

Laman
Added tag 1.0 for changeset 65d36a290273
1
2
3
4
5
6
7
try:
	from functools import cache
except ImportError:  # Python<3.9
	from functools import lru_cache

	def cache(f):
		return lru_cache(maxsize=None)(f)