From b049ec1662df13d409d149d937fa3366c33b32a1 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Sun, 19 Mar 2017 01:19:38 -0400 Subject: change types in documentation for lowlevelil so the results will be clickable, resolves #583 --- python/function.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') diff --git a/python/function.py b/python/function.py index 86c93bf7..e1c202f9 100644 --- a/python/function.py +++ b/python/function.py @@ -289,12 +289,12 @@ class Function(object): @property def low_level_il(self): - """Function low level IL (read-only)""" + """returns LowLevelILFunction used to represent Function low level IL (read-only)""" return lowlevelil.LowLevelILFunction(self.arch, core.BNGetFunctionLowLevelIL(self.handle), self) @property def lifted_il(self): - """Function lifted IL (read-only)""" + """returns LowLevelILFunction used to represent lifted IL (read-only)""" return lowlevelil.LowLevelILFunction(self.arch, core.BNGetFunctionLiftedIL(self.handle), self) @property -- cgit v1.3.1