Detach the target, and let it execute on its own.
(self)
| 786 | dbgcore.BNDebuggerDisconnectDebugServer(self.handle) |
| 787 | |
| 788 | def detach(self) -> None: |
| 789 | """ |
| 790 | Detach the target, and let it execute on its own. |
| 791 | """ |
| 792 | dbgcore.BNDebuggerQuit(self.handle) |
| 793 | |
| 794 | def pause(self) -> None: |
| 795 | """ |
no outgoing calls
no test coverage detected