mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 15:33:16 +00:00
77f9033095
Authored by: fstirlitz, pukkandan
15 lines
210 B
Python
15 lines
210 B
Python
# flake8: noqa: F405
|
|
|
|
from re import * # F403
|
|
|
|
try:
|
|
Pattern # >= 3.7
|
|
except NameError:
|
|
Pattern = type(compile(''))
|
|
|
|
|
|
try:
|
|
Match # >= 3.7
|
|
except NameError:
|
|
Match = type(compile('').match(''))
|