This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
youtube-dl
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1.1k
Wiki
Activity
Browse Source
Add intlist_to_bytes to utils.py
rtmp_test
rzhxeo
11 years ago
parent
550bfd4cbd
commit
cba892fa1f
1 changed files
with
7 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-0
youtube_dl/utils.py
+ 7
- 0
youtube_dl/utils.py
View File
@ -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
)
Write
Preview
Loading…
Cancel
Save