Checks if the PE file has relocation directory
(self)
| 6057 | return self.dump_info() |
| 6058 | |
| 6059 | def has_relocs(self): |
| 6060 | """Checks if the PE file has relocation directory""" |
| 6061 | return hasattr(self, "DIRECTORY_ENTRY_BASERELOC") |
| 6062 | |
| 6063 | def print_info(self, encoding="utf-8"): |
| 6064 | """Print all the PE header information in a human readable from.""" |