summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/function.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/function.py b/python/function.py
index 619b21f9..4d859683 100644
--- a/python/function.py
+++ b/python/function.py
@@ -1337,7 +1337,7 @@ class Function:
@property
def analysis_skipped(self) -> bool:
- """Whether automatic analysis was skipped for this function, set to true to disable analysis."""
+ """Whether automatic analysis was skipped for this function. Can be set to false to re-enable analysis."""
return core.BNIsFunctionAnalysisSkipped(self.handle)
@analysis_skipped.setter
@@ -2600,6 +2600,8 @@ class Function:
``reanalyze`` causes this functions to be reanalyzed. This function does not wait for the analysis to finish.
:param enums.FunctionUpdateType update_type: (optional) Desired update type
+ .. warning:: If analysis_skipped is True, using this API will not trigger re-analysis. Instead, set analysis_skipped to false.
+
:rtype: None
"""
core.BNReanalyzeFunction(self.handle, update_type)