Changelog
=========
++ Version 0.25 (??)
+
+ - Don't attempt to hex/string dump SHT_NOBITS sections in readelf (#119).
+ - Add Python 3.5 testing to the tox file.
+ - Minor bugfixes (#118)
+
+ Version 0.24 (04.08.2016)
- Retrieve symbols by name - get_symbol_by_name (#58).
- Support for zlib-compressed debug sections (#102)
- Support for DWARF v4 line programs (#82)
-
+ Version 0.23 (08.11.2014)
- Minimal Python 2.x version raised to 2.7
from ..common.exceptions import ELFRelocationError
from ..common.utils import elf_assert, struct_parse
from .sections import Section
-from .enums import ENUM_RELOC_TYPE_i386, ENUM_RELOC_TYPE_x64, ENUM_RELOC_TYPE_MIPS
+from .enums import (
+ ENUM_RELOC_TYPE_i386, ENUM_RELOC_TYPE_x64, ENUM_RELOC_TYPE_MIPS)
class Relocation(object):
ENUM_RELOC_TYPE_x64['R_X86_64_32S']: _RELOCATION_RECIPE_TYPE(
bytesize=4, has_addend=True, calc_func=_reloc_calc_sym_plus_addend),
}
-
-