12 lines · python
1import lldb2 3 4class stop_handler:5 def __init__(self, target, extra_args, dict):6 self.extra_args = extra_args7 self.target = target8 9 def handle_stop(self, exe_ctx, stream):10 stream.Print("I did indeed run\n")11 return True12