diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2022-06-16 13:18:40 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2022-06-16 13:18:40 -0400 |
| commit | b46050815d7b3a1a4777a87dbcb23b053da66577 (patch) | |
| tree | d4cfc7734a6dd95372566ea37c84b1ea1a25db2b /python/function.py | |
| parent | 4c375e18a4f464a049a1ac1457cb6359c0b27596 (diff) | |
clarify documentation for analysis_skipped and reanalyze
Diffstat (limited to 'python/function.py')
| -rw-r--r-- | python/function.py | 4 |
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) |
