Add docstrings for SetCondition() and GetCondition() APIs.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@142396 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/scripts/Python/interface/SBBreakpoint.i b/scripts/Python/interface/SBBreakpoint.i
index 0ca83bf..9e333c3 100644
--- a/scripts/Python/interface/SBBreakpoint.i
+++ b/scripts/Python/interface/SBBreakpoint.i
@@ -128,9 +128,19 @@
     uint32_t
     GetIgnoreCount () const;
     
+    %feature("docstring", "
+    //--------------------------------------------------------------------------
+    /// The breakpoint stops only if the condition expression evaluates to true.
+    //--------------------------------------------------------------------------
+    ") SetCondition;
     void 
     SetCondition (const char *condition);
     
+    %feature("docstring", "
+    //------------------------------------------------------------------
+    /// Get the condition expression for the breakpoint.
+    //------------------------------------------------------------------
+    ") GetCondition;
     const char *
     GetCondition ();