diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2019-10-09 14:37:27 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2019-10-09 14:37:27 -0400 |
| commit | 4530f4ff793ecfd857b9deed6af450f1cb31c8d0 (patch) | |
| tree | b2f1e75fc319f926df64d63fdda40ad66d4bb861 /python | |
| parent | c0c1207ff744a9b586b34c4916fe63bc4a89259a (diff) | |
fix get_functions_containing documentation to match new behavior
Diffstat (limited to 'python')
| -rw-r--r-- | python/binaryview.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/binaryview.py b/python/binaryview.py index 1e18acb4..9c67b097 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -2892,7 +2892,7 @@ class BinaryView(object): def get_functions_containing(self, addr): """ - ``get_functions_containing`` returns a list of functions which contain the given address or None on failure. + ``get_functions_containing`` returns a list of functions which contain the given address. :param int addr: virtual address to query. :rtype: list of Function objects @@ -5916,4 +5916,4 @@ class StructuredDataView(object): self._structure.width, self._address) def __len__(self): - return self._structure.width
\ No newline at end of file + return self._structure.width |
