diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-09-24 04:51:43 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-09-24 04:51:43 +0000 |
commit | 5b94dc28b3f3ee939a871eb6583372244a44217f (patch) | |
tree | 2acab433556ea758f3ed6718e6ec0ce3c43f4591 /lldb/scripts/Python/interface/SBSection.i | |
parent | 1f88d2f53103f68cc13dcf6f0d98e33dc60458ab (diff) | |
download | bcm5719-llvm-5b94dc28b3f3ee939a871eb6583372244a44217f.tar.gz bcm5719-llvm-5b94dc28b3f3ee939a871eb6583372244a44217f.zip |
SBSection supports iteration through its subsections, represented as SBSection as well.
SBModule supports an additional SBSection iteration, besides the original SBSymbol iteration.
Add docstrings and implement the two SBSection iteration protocols.
llvm-svn: 140449
Diffstat (limited to 'lldb/scripts/Python/interface/SBSection.i')
-rw-r--r-- | lldb/scripts/Python/interface/SBSection.i | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/scripts/Python/interface/SBSection.i b/lldb/scripts/Python/interface/SBSection.i index a206b34b3cf..990a7053f5f 100644 --- a/lldb/scripts/Python/interface/SBSection.i +++ b/lldb/scripts/Python/interface/SBSection.i @@ -10,7 +10,10 @@ namespace lldb { %feature("docstring", -"Represents an executable image section." +"Represents an executable image section. + +SBSection supports iteration through its subsection, represented as SBSection +as well." ) SBSection; class SBSection |