[utils] Fix intlist_to_bytes in Python 2 (#4181)

This commit is contained in:
Philipp Hagemeister 2014-11-13 15:28:42 +01:00
parent 3fa5bb3802
commit 4c0924bb24
2 changed files with 7 additions and 4 deletions

View file

@ -843,10 +843,7 @@ def bytes_to_intlist(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)
return struct.pack('%dB' % len(xs), *xs)
# Cross-platform file locking