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

Method __init__

pythonmemorymodule/pefile.py:1150–1159  ·  view source on GitHub ↗
(self, *argl, **argd)

Source from the content-addressed store, hash-verified

1148 """Convenience section handling class."""
1149
1150 def __init__(self, *argl, **argd):
1151 if "pe" in argd:
1152 self.pe = argd["pe"]
1153 del argd["pe"]
1154
1155 Structure.__init__(self, *argl, **argd)
1156 self.PointerToRawData_adj = None
1157 self.VirtualAddress_adj = None
1158 self.section_min_addr = None
1159 self.section_max_addr = None
1160
1161 def get_PointerToRawData_adj(self):
1162 if self.PointerToRawData_adj is None:

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected