Files @ 30c60d9d2e94
Branch filter:

Location: Shamira/src/shamira/util.py

Laman
the program can output its version
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)