Cosmetic cleanup
authorEli Bendersky <eliben@gmail.com>
Fri, 5 Jun 2015 13:11:46 +0000 (06:11 -0700)
committerEli Bendersky <eliben@gmail.com>
Fri, 5 Jun 2015 13:11:46 +0000 (06:11 -0700)
LICENSE
examples/dwarf_decode_address.py
examples/elf_low_high_api.py
examples/elf_relocations.py
examples/elf_show_debug_sections.py

diff --git a/LICENSE b/LICENSE
index c779ed70f35050980612c93e6eba90850ea1fa3c..26c1b8ffa0e0d7c69df65efa8e060606258b5099 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -30,4 +30,3 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 OTHER DEALINGS IN THE SOFTWARE.
 
 For more information, please refer to <http://unlicense.org/>
-
index 80b53eefc897cdc7899dd3d2ab89f22c9d6d1a86..dffc1787678e30a038fd16e167ff32e0f4909b81 100644 (file)
@@ -82,4 +82,3 @@ if __name__ == '__main__':
     for filename in sys.argv[1:]:
         # For testing we use a hardcoded address.
         process_file(filename, 0x400503)
-
index 72b4daaabd856f91b465334ddf8f7d24b0926451..f6fbed19c18765f194bfb2c8811392b75300904c 100644 (file)
@@ -15,7 +15,6 @@ import sys
 # examples/ dir of the source distribution.
 sys.path[0:0] = ['.', '..']
 
-from elftools.common.py3compat import bytes2str
 from elftools.elf.elffile import ELFFile
 from elftools.elf.sections import SymbolTableSection
 
@@ -87,5 +86,3 @@ def section_info_highlevel(stream):
 if __name__ == '__main__':
     for filename in sys.argv[1:]:
         process_file(filename)
-
-
index 70e8b3a029d364663a305bb03883241921afd6eb..06ad93be5326ce1682fea987d9f373a4659ba147 100644 (file)
@@ -14,8 +14,6 @@ import sys
 # examples/ dir of the source distribution.
 sys.path[0:0] = ['.', '..']
 
-
-from elftools.common.py3compat import bytes2str
 from elftools.elf.elffile import ELFFile
 from elftools.elf.relocation import RelocationSection
 
index 07202ce6ac944d2ffad531c5f431a81941ce69bc..02a13fbc9d0d7181f28adf65895bbcbdee7b94d1 100644 (file)
@@ -13,7 +13,6 @@ import sys
 # examples/ dir of the source distribution.
 sys.path[0:0] = ['.', '..']
 
-from elftools.common.py3compat import bytes2str
 from elftools.elf.elffile import ELFFile
 
 
@@ -23,7 +22,6 @@ def process_file(filename):
         elffile = ELFFile(f)
 
         for section in elffile.iter_sections():
-            # Section names are string
             if section.name.startswith('.debug'):
                 print('  ' + section.name)
 
@@ -31,4 +29,3 @@ def process_file(filename):
 if __name__ == '__main__':
     for filename in sys.argv[1:]:
         process_file(filename)
-