Update CHANGES + cosmetic cleanup
authorEli Bendersky <eliben@gmail.com>
Wed, 26 Oct 2016 13:39:49 +0000 (06:39 -0700)
committerEli Bendersky <eliben@gmail.com>
Wed, 26 Oct 2016 13:39:49 +0000 (06:39 -0700)
CHANGES
elftools/elf/relocation.py
elftools/elf/sections.py

diff --git a/CHANGES b/CHANGES
index 6916e031e4f2383f95e811988914434efad8aae4..e444e97faef6c1588ab14c7ae5552bc45f1a1432 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,12 @@
 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).
@@ -17,7 +23,6 @@ Changelog
   - 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
index 2b9a48bf1351cdf05fc109870261121c06b84cb2..c663d1c5c982a41aabfa8b674e6f78868e286a46 100644 (file)
@@ -11,7 +11,8 @@ from collections import namedtuple
 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):
@@ -248,5 +249,3 @@ class RelocationHandler(object):
         ENUM_RELOC_TYPE_x64['R_X86_64_32S']: _RELOCATION_RECIPE_TYPE(
             bytesize=4, has_addend=True, calc_func=_reloc_calc_sym_plus_addend),
     }
-
-
index 76f9f2a6b1074e633a06ad97bd6c476aeeb4e356..99550ac365578e67d5b4bde0493a02dde511ee7b 100644 (file)
@@ -45,7 +45,7 @@ class Section(object):
             return self.header == other.header
         except AttributeError:
             return False
-    
+
     def __hash__(self):
         return hash(self.header)