commit | f11c029ae8215335b63f419bcefa64b73d12ee22 | [log] [tgz] |
---|---|---|
author | Johnny Chen <johnny.chen@apple.com> | Fri Sep 30 00:49:02 2011 +0000 |
committer | Johnny Chen <johnny.chen@apple.com> | Fri Sep 30 00:49:02 2011 +0000 |
tree | 3d614e8fdb5d2f98d3a3cf90d42a5c503f457443 | |
parent | 6acf30a8cd90c176515b7af8056102bf3c596034 [diff] |
Add docstring to in_range() function residing in the lldb module. git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@140833 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/scripts/Python/modify-python-lldb.py b/scripts/Python/modify-python-lldb.py index 95f68a3..c5cbab0 100644 --- a/scripts/Python/modify-python-lldb.py +++ b/scripts/Python/modify-python-lldb.py
@@ -63,6 +63,7 @@ # lldb_helpers = ''' def in_range(symbol, section): + """Test whether a symbol is within the range of a section.""" symSA = symbol.GetStartAddress().GetFileAddress() symEA = symbol.GetEndAddress().GetFileAddress() secSA = section.GetFileAddress()