summaryrefslogtreecommitdiff
path: root/python/function.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2017-03-24 11:20:39 -0400
committerPeter LaFosse <peter@vector35.com>2017-03-24 11:20:39 -0400
commit435e937c9705bc71cf1e7da1e08b23345a131360 (patch)
tree5a4d729acb0404c4c4059f0c7e8aa7c22136b649 /python/function.py
parent1e8e975ed8100c7a6186e8b27833a067ceaf05be (diff)
parentddaf7506e1802cfd4f9c78bcfb14deb0180b04d8 (diff)
Merge branch 'dev' into staging
Diffstat (limited to 'python/function.py')
-rw-r--r--python/function.py4
1 files changed, 2 insertions, 2 deletions
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