http://gitunderground.i2p/archive/youtube-dl/commit/19dc10b986eeda47975a0e77e84df20ad3b59062
CERT_NONE try : with compat_contextlib_suppress ( TypeError ) : # Fails with Python 2.7.8 (create_default_context present # but HTTPSHandler has no context=) return YoutubeDLHTTPSHandler ( params , context = context , * * kwargs ) except TypeError : # Python 2.7.8 # (create_default_context present but HTTPSHandler has no context=) pass if sys . version_info < ( 3 , 2 ) : return YoutubeDLHTTPSHandler ( params , * * kwargs ) @@ -3176,12 +3166,10 @@ def parse_iso8601(date_str, delimiter='T', timezone=None):...