pyelftools
pyelftools copied to clipboard
Why aren't DW_FORM_blockX attributes returned as bytes?
Those come across as lists of ints.
Bytes are new to python3.
bytearray
on Python 2, then. No different from bytes
, except mutable. They index the same as int arrays, unlike strings.