tenfourfox/python/lldbutils/lldbutils/__init__.py
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07: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)