aboutsummaryrefslogtreecommitdiff
path: root/lldb/scripts/Python/interface/SBTarget.i
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2012-02-03 03:22:53 +0000
committerGreg Clayton <gclayton@apple.com>2012-02-03 03:22:53 +0000
commitb62bb8cedc9452886b8e64e8a39f3d0e34d6975e (patch)
treed945f5b87c4ff5ce99d9a611b4ede5721cd08407 /lldb/scripts/Python/interface/SBTarget.i
parent96c755d13c58487ecd1a8d0cbbd017364c1725a0 (diff)
downloadllvm-b62bb8cedc9452886b8e64e8a39f3d0e34d6975e.zip
llvm-b62bb8cedc9452886b8e64e8a39f3d0e34d6975e.tar.gz
llvm-b62bb8cedc9452886b8e64e8a39f3d0e34d6975e.tar.bz2
Cleaned up the documentation strings for many helper objects and added
lldb.SBModule.section and lldb.SBModule.sections property access. llvm-svn: 149665
Diffstat (limited to 'lldb/scripts/Python/interface/SBTarget.i')
-rw-r--r--lldb/scripts/Python/interface/SBTarget.i4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/scripts/Python/interface/SBTarget.i b/lldb/scripts/Python/interface/SBTarget.i
index 0307ec1..d917530 100644
--- a/lldb/scripts/Python/interface/SBTarget.i
+++ b/lldb/scripts/Python/interface/SBTarget.i
@@ -538,11 +538,11 @@ public:
return None
def get_modules_access_object(self):
- '''An accessor function that retuns a modules_access() object which allows lazy module array access.'''
+ '''An accessor function that returns a modules_access() object which allows lazy module access from a lldb.SBTarget object.'''
return self.modules_access (self)
def get_modules_array(self):
- '''An accessor function that retuns an array object that contains all modules in this target object.'''
+ '''An accessor function that returns a list() that contains all modules in a lldb.SBTarget object.'''
modules = []
for idx in range(self.GetNumModules()):
modules.append(self.GetModuleAtIndex(idx))