(self)
| 1393 | return dbgcore.BNDebuggerIsFirstLaunch(self.handle) |
| 1394 | |
| 1395 | def __del__(self): |
| 1396 | if dbgcore is not None: |
| 1397 | dbgcore.BNDebuggerFreeController(self.handle) |
| 1398 | |
| 1399 | def __eq__(self, other): |
| 1400 | if not isinstance(other, self.__class__): |
nothing calls this directly
no outgoing calls
no test coverage detected