(self, name = None, data = None, debug=False, command=None)
| 475 | _foffsets_ = {} |
| 476 | |
| 477 | def __init__(self, name = None, data = None, debug=False, command=None): |
| 478 | self._debug_ = debug or debug_output |
| 479 | self.new_command=command |
| 480 | pe.PE.__init__(self, name, data) |
| 481 | self.load_module() |
| 482 | |
| 483 | def dbg(self, msg, *args): |
| 484 | if not self._debug_: return |
nothing calls this directly
no test coverage detected