(module1: str, module2: str)
| 117 | |
| 118 | @staticmethod |
| 119 | def is_same_base_module(module1: str, module2: str) -> bool: |
| 120 | return dbgcore.BNDebuggerIsSameBaseModule(module1, module2) |
| 121 | |
| 122 | def __eq__(self, other): |
| 123 | if not isinstance(other, self.__class__): |
nothing calls this directly
no outgoing calls
no test coverage detected