Add cross reference to SBThread from the SBFrame docstring.  Also add a simple iteration example.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@136227 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/scripts/Python/interface/SBFrame.i b/scripts/Python/interface/SBFrame.i
index bf33b6f..28526ab 100644
--- a/scripts/Python/interface/SBFrame.i
+++ b/scripts/Python/interface/SBFrame.i
@@ -37,7 +37,13 @@
                 args=get_args_as_string(frame, showFuncName=False) if not frame.IsInlined() else '()')
 
     ...
-"
+
+And,
+
+    for frame in thread:
+        print frame
+
+See also SBThread."
 ) SBFrame;
 class SBFrame
 {