]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/functionalities/command_script/import/thepackage/__init__.py
Vendor import of lldb release_39 branch r276489:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / functionalities / command_script / import / thepackage / __init__.py
1 from __future__ import absolute_import
2
3 from . import TPunitA
4 from . import TPunitB
5
6 def __lldb_init_module(debugger,*args):
7         debugger.HandleCommand("command script add -f thepackage.TPunitA.command TPcommandA")
8         debugger.HandleCommand("command script add -f thepackage.TPunitB.command TPcommandB")