(self, data)
| 435 | class LoadSection: |
| 436 | |
| 437 | def __init__(self, data): |
| 438 | self.FR = FileReader(data) |
| 439 | self.section_name = self.FR.read(0x10).decode("utf-8") |
| 440 | self.segment_name = self.FR.read(0x10).decode("utf-8") |
| 441 | |
| 442 | |
| 443 | class LoadSection32(LoadSection): |
nothing calls this directly
no test coverage detected