]> jfr.im git - yt-dlp.git/blame - yt_dlp/compat/_deprecated.py
Fix e0c4db04dc82a699bdabd9821ddc239ebe17d30a for pypy
[yt-dlp.git] / yt_dlp / compat / _deprecated.py
CommitLineData
77f90330 1"""Deprecated - New code should avoid these"""
2
3import base64
ac668111 4import urllib.error
5import urllib.parse
6
7compat_str = str
77f90330 8
9compat_b64decode = base64.b64decode
ac668111 10
ac668111 11compat_urlparse = urllib.parse
77f90330 12compat_parse_qs = urllib.parse.parse_qs
77f90330 13compat_urllib_parse_unquote = urllib.parse.unquote
77f90330 14compat_urllib_parse_urlencode = urllib.parse.urlencode
15compat_urllib_parse_urlparse = urllib.parse.urlparse