mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	 add96eb9f8
			
		
	
	add96eb9f8
	
	
	
		
			
			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)
 |