Skip to content

Commit

Permalink
[compat] Use more conventional name for compat SimpleCookie
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw committed Apr 6, 2021
1 parent 6b315d9 commit 70d0d4f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions youtube_dl/compat.py
Expand Up @@ -74,13 +74,13 @@ def __init__(self, version, name, value, *args, **kwargs):
import Cookie as compat_cookies

if sys.version_info[0] == 2:
class compat_SimpleCookie(compat_cookies.SimpleCookie):
class compat_cookies_SimpleCookie(compat_cookies.SimpleCookie):
def load(self, rawdata):
if isinstance(rawdata, compat_str):
rawdata = str(rawdata)
return super(compat_SimpleCookie, self).load(rawdata)
return super(compat_cookies_SimpleCookie, self).load(rawdata)
else:
compat_SimpleCookie = compat_cookies.SimpleCookie
compat_cookies_SimpleCookie = compat_cookies.SimpleCookie

try:
import html.entities as compat_html_entities
Expand Down Expand Up @@ -3002,14 +3002,14 @@ def compat_ctypes_WINFUNCTYPE(*args, **kwargs):
'compat_HTMLParseError',
'compat_HTMLParser',
'compat_HTTPError',
'compat_SimpleCookie',
'compat_Struct',
'compat_b64decode',
'compat_basestring',
'compat_chr',
'compat_cookiejar',
'compat_cookiejar_Cookie',
'compat_cookies',
'compat_cookies_SimpleCookie',
'compat_ctypes_WINFUNCTYPE',
'compat_etree_Element',
'compat_etree_fromstring',
Expand Down
6 changes: 3 additions & 3 deletions youtube_dl/extractor/common.py
Expand Up @@ -17,13 +17,13 @@

from ..compat import (
compat_cookiejar_Cookie,
compat_cookies_SimpleCookie,
compat_etree_Element,
compat_etree_fromstring,
compat_getpass,
compat_integer_types,
compat_http_client,
compat_os_name,
compat_SimpleCookie,
compat_str,
compat_urllib_error,
compat_urllib_parse_unquote,
Expand Down Expand Up @@ -2901,10 +2901,10 @@ def _set_cookie(self, domain, name, value, expire_time=None, port=None,
self._downloader.cookiejar.set_cookie(cookie)

def _get_cookies(self, url):
""" Return a compat_SimpleCookie with the cookies for the url """
""" Return a compat_cookies_SimpleCookie with the cookies for the url """
req = sanitized_Request(url)
self._downloader.cookiejar.add_cookie_header(req)
return compat_SimpleCookie(req.get_header('Cookie'))
return compat_cookies_SimpleCookie(req.get_header('Cookie'))

def _apply_first_set_cookie_header(self, url_handle, cookie):
"""
Expand Down

0 comments on commit 70d0d4f

Please sign in to comment.