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/SBBreakpointLocation.i b/scripts/Python/interface/SBBreakpointLocation.i
index d41033f..093a0e6 100644
--- a/scripts/Python/interface/SBBreakpointLocation.i
+++ b/scripts/Python/interface/SBBreakpointLocation.i
@@ -50,9 +50,20 @@
     void
     SetIgnoreCount (uint32_t n);
 
+    %feature("docstring", "
+    //--------------------------------------------------------------------------
+    /// The breakpoint location stops only if the condition expression evaluates
+    /// to true.
+    //--------------------------------------------------------------------------
+    ") SetCondition;
     void 
     SetCondition (const char *condition);
     
+    %feature("docstring", "
+    //------------------------------------------------------------------
+    /// Get the condition expression for the breakpoint location.
+    //------------------------------------------------------------------
+    ") GetCondition;
     const char *
     GetCondition ();