From 4530f4ff793ecfd857b9deed6af450f1cb31c8d0 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Wed, 9 Oct 2019 14:37:27 -0400 Subject: fix get_functions_containing documentation to match new behavior --- python/binaryview.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') 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 -- cgit v1.3.1