aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/command_script/import/thepackage/TPunitA.py
blob: 9694b084295fcf6cc680c6dc3d83dfa990954dee (plain) (blame)
1
2
3
4
5
6
7

import six


def command(debugger, command, result, internal_dict):
    result.PutCString(six.u("hello world A"))
    return None