Files
clang-p2996/lldb/test/functionalities/alias/py_import
Enrico Granata 223383ed6c Changes to Python commands:
- They now have an SBCommandReturnObject instead of an SBStream as third argument
 - The class CommandObjectPythonFunction has been merged into CommandObjectCommands.cpp
 - The command to manage them is now:
  command script with subcommands add, list, delete, clear
   command alias is returned to its previous functionality
 - Python commands are now part of an user dictionary, instead of being seen as aliases
 

llvm-svn: 137785
2011-08-16 23:24:13 +00:00

7 lines
276 B
Plaintext

script import sys, os
script sys.path.append(os.path.join(os.getcwd(), os.pardir))
script from welcome import *
command script add welcome --function welcome_impl
command script add targetname --function target_name_impl
command script add longwait --function print_wait_impl