:class:`list`: A list of :class:`elftools.elf.sections.Section` objects for the segments in the ELF.
(self)
| 589 | |
| 590 | @property |
| 591 | def sections(self): |
| 592 | """ |
| 593 | :class:`list`: A list of :class:`elftools.elf.sections.Section` objects |
| 594 | for the segments in the ELF. |
| 595 | """ |
| 596 | return list(self.iter_sections()) |
| 597 | |
| 598 | @property |
| 599 | def dwarf(self): |
no test coverage detected