[Lldb-commits] [lldb] r135642 - /lldb/trunk/scripts/Python/interface/SBCommandReturnObject.i
Johnny Chen
johnny.chen at apple.com
Wed Jul 20 17:32:12 PDT 2011
Author: johnny
Date: Wed Jul 20 19:32:12 2011
New Revision: 135642
URL: http://llvm.org/viewvc/llvm-project?rev=135642&view=rev
Log:
Add docstring for SBCommandReturnObject class.
Modified:
lldb/trunk/scripts/Python/interface/SBCommandReturnObject.i
Modified: lldb/trunk/scripts/Python/interface/SBCommandReturnObject.i
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/Python/interface/SBCommandReturnObject.i?rev=135642&r1=135641&r2=135642&view=diff
==============================================================================
--- lldb/trunk/scripts/Python/interface/SBCommandReturnObject.i (original)
+++ lldb/trunk/scripts/Python/interface/SBCommandReturnObject.i Wed Jul 20 19:32:12 2011
@@ -9,6 +9,13 @@
namespace lldb {
+%feature("docstring",
+"Represents a container which holds the result from command execution.
+It works with SBCommandInterpreter.HandleCommand() to encapsulate the result
+of command execution.
+
+See SBCommandInterpreter for example usage of SBCommandReturnObject."
+) SBCommandReturnObject;
class SBCommandReturnObject
{
public:
More information about the lldb-commits
mailing list