mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-07-01 11:32:52 -05:00
Add intlist_to_bytes to utils.py
This commit is contained in:
@ -718,3 +718,10 @@ def bytes_to_intlist(bs):
|
|||||||
else:
|
else:
|
||||||
return [ord(c) for c in bs]
|
return [ord(c) for c in bs]
|
||||||
|
|
||||||
|
def intlist_to_bytes(xs):
|
||||||
|
if not xs:
|
||||||
|
return b''
|
||||||
|
if isinstance(chr(0), bytes): # Python 2
|
||||||
|
return ''.join([chr(x) for x in xs])
|
||||||
|
else:
|
||||||
|
return bytes(xs)
|
||||||
|
Reference in New Issue
Block a user