MCPcopy Create free account
hub / github.com/ELMERIKH/PyinMemoryPE / print_info

Method print_info

pythonmemorymodule/pefile.py:6063–6065  ·  view source on GitHub ↗

Print all the PE header information in a human readable from.

(self, encoding="utf-8")

Source from the content-addressed store, hash-verified

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."""
6065 print(self.dump_info(encoding=encoding))
6066
6067 def dump_info(self, dump=None, encoding="ascii"):
6068 """Dump all the PE header information into human readable string."""

Callers

nothing calls this directly

Calls 1

dump_infoMethod · 0.95

Tested by

no test coverage detected