pyelftools icon indicating copy to clipboard operation
pyelftools copied to clipboard

Why aren't DW_FORM_blockX attributes returned as bytes?

Open sevaa opened this issue 5 years ago • 2 comments

Those come across as lists of ints.

sevaa avatar Feb 08 '20 00:02 sevaa

Bytes are new to python3.

mdmillerii avatar Apr 17 '20 11:04 mdmillerii

bytearray on Python 2, then. No different from bytes, except mutable. They index the same as int arrays, unlike strings.

sevaa avatar Aug 31 '20 18:08 sevaa