diff options
Diffstat (limited to 'lldb/www/python-reference.html')
-rwxr-xr-x | lldb/www/python-reference.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lldb/www/python-reference.html b/lldb/www/python-reference.html index 6e75e11ca56..bb4506229f5 100755 --- a/lldb/www/python-reference.html +++ b/lldb/www/python-reference.html @@ -411,6 +411,24 @@ Enter your Python command(s). Type 'DONE' to end. </td> </tr> </table> + + <p>Starting with SVN revision 232224, Python commands can also be implemented by means of a class + which should implement the following interface:</p> + + <code> + <font color=blue>class</font> CommandObjectType:<br/> + <font color=blue>def</font> __init__(self, debugger, session_dict):<br/> + <i>this call should initialize the command with respect to the command interpeter for the passed-in debugger</i> <br/> + <font color=blue>def</font> __call__(self, debugger, command, exe_ctx, result): <br/> + <i>this is the actual bulk of the command, akin to Python command functions</i> <br/> + <font color=blue>def</font> get_short_help(self): <br/> + <i>this call should return the short help text for this command</i><sup>[1]</sup><br/> + <font color=blue>def</font> get_long_help(self): <br/> + <i>this call should return the long help text for this command</i><sup>[1]</sup><br/> + </code> + +<sup>[1]</sup> This method is optional. + <p>As a convenience, you can treat the result object as a Python file object, and say <code><pre><tt>print >>result, "my command does lots of cool stuff"</tt></pre></code> SBCommandReturnObject and SBStream |