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

llvm-svn: 136227
This commit is contained in:
Johnny Chen 2011-07-27 18:13:32 +00:00
parent 38b5503d21
commit 3b67d57ae2
1 changed files with 7 additions and 1 deletions

View File

@ -37,7 +37,13 @@ def print_stacktrace(thread, string_buffer = False):
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
{