mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-10 09:30:53 +00:00
[utils] Clarify Python versions affected by buggy struct module
This commit is contained in:
parent
32d88410eb
commit
622d19160b
|
@ -1756,7 +1756,8 @@ def escape_url(url):
|
||||||
try:
|
try:
|
||||||
struct.pack('!I', 0)
|
struct.pack('!I', 0)
|
||||||
except TypeError:
|
except TypeError:
|
||||||
# In Python 2.6 (and some 2.7 versions), struct requires a bytes argument
|
# In Python 2.6 and 2.7.x < 2.7.7, struct requires a bytes argument
|
||||||
|
# See https://bugs.python.org/issue19099
|
||||||
def struct_pack(spec, *args):
|
def struct_pack(spec, *args):
|
||||||
if isinstance(spec, compat_str):
|
if isinstance(spec, compat_str):
|
||||||
spec = spec.encode('ascii')
|
spec = spec.encode('ascii')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user