aboutsummaryrefslogtreecommitdiff
path: root/yt_dlp/extractor/commonmistakes.py
diff options
context:
space:
mode:
authorfelix <felix.von.s@posteo.de>2021-12-30 13:23:36 +0100
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-04-12 05:32:50 +0530
commitcfb0511d822b39748c5a64dfe86b61ff8d5af176 (patch)
tree3988b2fd19f0b1bdf5e946381a1e96d86b39a2c0 /yt_dlp/extractor/commonmistakes.py
parentab96d1ad1bcdb943aa6519980e5383ca91f7da2b (diff)
[cleanup] Remove unused code paths (#2173)
Notes: * `_windows_write_string`: Fixed in 3.6 * https://bugs.python.org/issue1602 * PEP: https://www.python.org/dev/peps/pep-0528 * Windows UTF-8 fix: Fixed in 3.3 * https://bugs.python.org/issue13216 * `__loader__`: is always present in 3.3+ * https://bugs.python.org/issue14646 * `workaround_optparse_bug9161`: Fixed in 2.7 * https://bugs.python.org/issue9161 Authored by: fstirlitz
Diffstat (limited to 'yt_dlp/extractor/commonmistakes.py')
-rw-r--r--yt_dlp/extractor/commonmistakes.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/yt_dlp/extractor/commonmistakes.py b/yt_dlp/extractor/commonmistakes.py
index 051269652..e0a9f5956 100644
--- a/yt_dlp/extractor/commonmistakes.py
+++ b/yt_dlp/extractor/commonmistakes.py
@@ -1,7 +1,5 @@
from __future__ import unicode_literals
-import sys
-
from .common import InfoExtractor
from ..utils import ExtractorError
@@ -35,9 +33,7 @@ class UnicodeBOMIE(InfoExtractor):
IE_DESC = False
_VALID_URL = r'(?P<bom>\ufeff)(?P<id>.*)$'
- # Disable test for python 3.2 since BOM is broken in re in this version
- # (see https://github.com/ytdl-org/youtube-dl/issues/9751)
- _TESTS = [] if (3, 0) < sys.version_info <= (3, 3) else [{
+ _TESTS = [{
'url': '\ufeffhttp://www.youtube.com/watch?v=BaW_jenozKc',
'only_matching': True,
}]