[compat] Introduce compat_HTMLParseError
authorSergey M․ <dstftw@gmail.com>
Sun, 11 Jun 2017 18:50:32 +0000 (01:50 +0700)
committerSergey M․ <dstftw@gmail.com>
Sun, 11 Jun 2017 18:50:32 +0000 (01:50 +0700)
youtube_dl/compat.py

index 39527117fa27f049d5bc56390439091e38ca5f49..bbc499eda66db7253eeb8dec2801b49d8c5e5796 100644 (file)
@@ -2322,6 +2322,19 @@ try:
 except ImportError:  # Python 2
     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:
     from subprocess import DEVNULL
     compat_subprocess_get_DEVNULL = lambda: DEVNULL