mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[utils] Add rationale for register_socks_protocols
This commit is contained in:
parent
51fb4995a5
commit
d5ae6bb501
@ -63,6 +63,8 @@
|
|||||||
|
|
||||||
def register_socks_protocols():
|
def register_socks_protocols():
|
||||||
# "Register" SOCKS protocols
|
# "Register" SOCKS protocols
|
||||||
|
# In Python < 2.6.5, urlsplit() suffers from bug https://bugs.python.org/issue7904
|
||||||
|
# URLs with protocols not in urlparse.uses_netloc are not handled correctly
|
||||||
for scheme in ('socks', 'socks4', 'socks4a', 'socks5'):
|
for scheme in ('socks', 'socks4', 'socks4a', 'socks5'):
|
||||||
if scheme not in compat_urlparse.uses_netloc:
|
if scheme not in compat_urlparse.uses_netloc:
|
||||||
compat_urlparse.uses_netloc.append(scheme)
|
compat_urlparse.uses_netloc.append(scheme)
|
||||||
|
Loading…
Reference in New Issue
Block a user