summaryrefslogtreecommitdiffstats
path: root/yt_dlp/compat/functools.py
blob: 36c983642df1fa494815ce72ec6de77838e5f9d1 (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)