blob: 96689575f6e2c88c4b6fdd683d4760457cb0ee3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# flake8: noqa: F405
from functools import * # noqa: F403
from .compat_utils import passthrough_module
passthrough_module(__name__, 'functools')
del passthrough_module
try:
_ = cache # >= 3.9
except NameError:
cache = lru_cache(maxsize=None)
|