summaryrefslogtreecommitdiff
path: root/python/binaryview.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2019-10-09 14:37:27 -0400
committerJordan Wiens <jordan@psifertex.com>2019-10-09 14:37:27 -0400
commit4530f4ff793ecfd857b9deed6af450f1cb31c8d0 (patch)
treeb2f1e75fc319f926df64d63fdda40ad66d4bb861 /python/binaryview.py
parentc0c1207ff744a9b586b34c4916fe63bc4a89259a (diff)
fix get_functions_containing documentation to match new behavior
Diffstat (limited to 'python/binaryview.py')
-rw-r--r--python/binaryview.py4
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