summaryrefslogtreecommitdiff
path: root/python/function.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/function.py')
-rw-r--r--python/function.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/python/function.py b/python/function.py
index 86662cf7..bce4f843 100644
--- a/python/function.py
+++ b/python/function.py
@@ -2233,15 +2233,6 @@ class Function:
core.BNFreeTagList(tags, count.value)
return result
- @property
- def parent_components(self):
- _components = []
- count = ctypes.c_ulonglong(0)
- bn_components = core.BNGetFunctionParentComponents(self.handle, count)
- for i in range(count.value):
- _components.append(component.Component(self.view, bn_components[i]))
- return _components
-
def get_lifted_il_at(
self, addr: int, arch: Optional['architecture.Architecture'] = None
) -> Optional['lowlevelil.LowLevelILInstruction']: