mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	[compat] Introduce compat_HTMLParseError
This commit is contained in:
		| @@ -2322,6 +2322,19 @@ try: | |||||||
| except ImportError:  # Python 2 | except ImportError:  # Python 2 | ||||||
|     from HTMLParser import HTMLParser as compat_HTMLParser |     from HTMLParser import HTMLParser as compat_HTMLParser | ||||||
|  |  | ||||||
|  | try:  # Python 2 | ||||||
|  |     from HTMLParser import HTMLParseError as compat_HTMLParseError | ||||||
|  | except ImportError:  # Python <3.4 | ||||||
|  |     try: | ||||||
|  |         from html.parser import HTMLParseError as compat_HTMLParseError | ||||||
|  |     except ImportError:  # Python >3.4 | ||||||
|  |  | ||||||
|  |         # HTMLParseError has been deprecated in Python 3.3 and removed in | ||||||
|  |         # Python 3.5. Introducing dummy exception for Python >3.5 for compatible | ||||||
|  |         # and uniform cross-version exceptiong handling | ||||||
|  |         class compat_HTMLParseError(Exception): | ||||||
|  |             pass | ||||||
|  |  | ||||||
| try: | try: | ||||||
|     from subprocess import DEVNULL |     from subprocess import DEVNULL | ||||||
|     compat_subprocess_get_DEVNULL = lambda: DEVNULL |     compat_subprocess_get_DEVNULL = lambda: DEVNULL | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․