pyelftools icon indicating copy to clipboard operation
pyelftools copied to clipboard

Shouldn't DW_FORM_strp values be strings?

Open sevaa opened this issue 5 years ago • 1 comments

On Python3, it's bytes.

Also filenames in the lineprogram header.

sevaa avatar Feb 06 '20 16:02 sevaa

parse_cstring_from_stream returns a bytes because that's what we read from the binary file, without encoding. bytes was also convenient in a Python 2/3 split world

eliben avatar Mar 07 '20 15:03 eliben