xref: /llvm-project/lldb/test/Shell/ScriptInterpreter/Python/Inputs/sbaddress.py (revision 2238dcc39358353cac21df75c3c3286ab20b8f53)
1import lldb
2
3
4def test(debugger, command, result, internal_dict):
5    return int(lldb.SBAddress())
6
7
8def __lldb_init_module(debugger, internal_dict):
9    debugger.HandleCommand("command script add -f sbaddress.test test")
10