From 0fdf63426e186102906c1fb8b8e7107c058023ae Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Tue, 15 Jul 2025 20:25:48 -0400 Subject: Finish guided analysis feature and add unit tests. --- python/function.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'python/function.py') diff --git a/python/function.py b/python/function.py index eb80f9b0..b4343d00 100644 --- a/python/function.py +++ b/python/function.py @@ -2352,6 +2352,9 @@ class Function: if addresses is not None: core.BNFreeArchitectureAndAddressList(addresses) + def has_guided_source_blocks(self) -> bool: + return core.BNHasGuidedSourceBlocks(self.handle) + def get_indirect_branches_at( self, addr: int, arch: Optional['architecture.Architecture'] = None ) -> List['variable.IndirectBranchInfo']: -- cgit v1.3.1