summaryrefslogtreecommitdiffstats
path: root/python/lldbutils/lldbutils/__init__.py
blob: e1263153df872fb393892687fd69a2d7691d5441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Any copyright is dedicated to the Public Domain.
# http://creativecommons.org/publicdomain/zero/1.0/

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)