Clarify the SBProcess Python API GetSTDOUT()/GetSTDERR().  They look different from
the C++ API due to swig typemapping.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@145260 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/scripts/Python/interface/SBProcess.i b/scripts/Python/interface/SBProcess.i
index 04f9693..531cd59 100644
--- a/scripts/Python/interface/SBProcess.i
+++ b/scripts/Python/interface/SBProcess.i
@@ -67,9 +67,19 @@
     size_t
     PutSTDIN (const char *src, size_t src_len);
 
+    %feature("autodoc", "
+    Reads data from the current process's stdout stream. API client specifies
+    the size of the buffer to read data into. It returns the byte buffer in a
+    Python string.
+    ") GetSTDOUT;
     size_t
     GetSTDOUT (char *dst, size_t dst_len) const;
 
+    %feature("autodoc", "
+    Reads data from the current process's stderr stream. API client specifies
+    the size of the buffer to read data into. It returns the byte buffer in a
+    Python string.
+    ") GetSTDERR;
     size_t
     GetSTDERR (char *dst, size_t dst_len) const;