summaryrefslogtreecommitdiff
path: root/python/basicblock.py
diff options
context:
space:
mode:
authorBrandon Miller <brandon@vector35.com>2025-07-01 13:22:06 -0400
committerBrandon Miller <brandon@vector35.com>2025-07-01 13:28:38 -0400
commitf60e84330c8fc94f9eaeed2b8abd069e73133eb5 (patch)
treee96f350111b0dc62fc82f0a98536fe39b8d34627 /python/basicblock.py
parent669410255fc2994d38b68c41d3ee0644366ff189 (diff)
Python bindings for custom basic block analysis
Diffstat (limited to 'python/basicblock.py')
-rw-r--r--python/basicblock.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/python/basicblock.py b/python/basicblock.py
index 1148d887..9f02f2a9 100644
--- a/python/basicblock.py
+++ b/python/basicblock.py
@@ -478,7 +478,6 @@ class BasicBlock:
.. note:: This method is intended for use by architecture plugins only.
:return: List of PendingBasicBlockEdge objects.
- :rtype: list[PendingBasicBlockEdge]
"""
count = ctypes.c_ulonglong(0)
pending_edges = core.BNGetBasicBlockPendingOutgoingEdges(self.handle, ctypes.byref(count))
@@ -513,7 +512,6 @@ class BasicBlock:
.. note:: This method is intended for use by architecture plugins only.
:return: Raw instruction data as bytes.
- :rtype: bytes
"""
size = ctypes.c_ulonglong(0)