Mypal/python/lldbutils/lldbutils/__init__.py
2019-03-11 13:26:37 +03:00

14 lines
327 B
Python

import lldb
__all__ = ['content', 'general', 'gfx', 'layout', 'utils']
def init():
for name in __all__:
init = None
try:
init = __import__('lldbutils.' + name, globals(), locals(), ['init']).init
except AttributeError:
pass
if init:
init(lldb.debugger)