[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / lldb / test / Shell / Commands / Inputs / stop_hook.py
blobaf437735967dde8836c58b967591b2a720922156
1 import lldb
4 class stop_handler:
5 def __init__(self, target, extra_args, dict):
6 self.extra_args = extra_args
7 self.target = target
9 def handle_stop(self, exe_ctx, stream):
10 stream.Print("I did indeed run\n")
11 return True