Explorar el Código

Add intlist_to_bytes to utils.py

rzhxeo hace 12 años
padre
commit
cba892fa1f
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. 7 0
      youtube_dl/utils.py

+ 7 - 0
youtube_dl/utils.py

@@ -718,3 +718,10 @@ def bytes_to_intlist(bs):
     else:
         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)