mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	Authored by: seproDev Reviewed-by: bashonly <88596187+bashonly@users.noreply.github.com> Reviewed-by: Simon Sawicki <contact@grub4k.xyz>
		
			
				
	
	
		
			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)
 |