From 6929b41a216e20f0498cbd99880b17eab16777c9 Mon Sep 17 00:00:00 2001 From: pukkandan Date: Mon, 18 Jul 2022 05:50:54 +0530 Subject: Remove Python 3.6 support Closes #3764 --- yt_dlp/compat/re.py | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 yt_dlp/compat/re.py (limited to 'yt_dlp/compat/re.py') diff --git a/yt_dlp/compat/re.py b/yt_dlp/compat/re.py deleted file mode 100644 index e1d3a2645..000000000 --- a/yt_dlp/compat/re.py +++ /dev/null @@ -1,18 +0,0 @@ -# flake8: noqa: F405 -from re import * # F403 - -from .compat_utils import passthrough_module - -passthrough_module(__name__, 're') -del passthrough_module - -try: - Pattern # >= 3.7 -except NameError: - Pattern = type(compile('')) - - -try: - Match # >= 3.7 -except NameError: - Match = type(compile('').match('')) -- cgit v1.2.3