mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2026-09-23 03:38:11 +00:00
Authored by: seproDev Reviewed-by: bashonly <[email protected]> Reviewed-by: Simon Sawicki <[email protected]>
13 lines
255 B
Python
13 lines
255 B
Python
# 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)
|