Files
clang-p2996/lldb/test/functionalities/command_script/import/foo/foo2.py
Enrico Granata 3a193f4b11 Fixing Python commands test cases to work even after removing Printf
(and using the new syntax for printing :-)

llvm-svn: 178389
2013-03-30 00:53:13 +00:00

7 lines
239 B
Python

def foo2_function(debugger, args, result, dict):
print >>result, ("foo2 says " + args)
return None
def __lldb_init_module(debugger, session_dict):
debugger.HandleCommand("command script add -f foo2.foo2_function foo2cmd")
return None