Comment 13 for bug 1257591

Revision history for this message
Stephen Tiedemann (stephen-tiedemann) wrote :

What is your python version? And could you check if the following works:

$ python
>>> import struct
>>> struct.unpack("<I", "\x0A\x00\x00\x00")
(10,)
>>> struct.unpack("<I", bytearray("\x0A\x00\x00\x00"))
(10,)