From f60e84330c8fc94f9eaeed2b8abd069e73133eb5 Mon Sep 17 00:00:00 2001 From: Brandon Miller Date: Tue, 1 Jul 2025 13:22:06 -0400 Subject: Python bindings for custom basic block analysis --- python/basicblock.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'python/basicblock.py') 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) -- cgit v1.3.1