diff options
| author | Galen Williamson <galen@vector35.com> | 2022-12-23 15:06:22 -0500 |
|---|---|---|
| committer | Galen Williamson <galen@vector35.com> | 2022-12-23 16:29:38 -0500 |
| commit | 47d44cd285530729b94e5960a93648047fc0b4ce (patch) | |
| tree | cf546c078c8843599b501ab489f3e25dd7d14552 /python/function.py | |
| parent | 8e82653a052cb1b32e2d5ca53fd8f014df3e8737 (diff) | |
Fixed missing newlines before `:param` in docstrings
This was causing the generated html to not show the param lines
correctly.
Diffstat (limited to 'python/function.py')
| -rw-r--r-- | python/function.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/python/function.py b/python/function.py index 8523e485..a6693d85 100644 --- a/python/function.py +++ b/python/function.py @@ -827,6 +827,7 @@ class Function: ``add_auto_function_tag`` adds an already-created Tag object as a function tag. If you want to create the tag as well, consider using :meth:`create_auto_function_tag <function.Function.create_auto_function_tag>` + :param Tag tag: Tag object to be added :rtype: None """ @@ -2618,6 +2619,7 @@ class Function: ) -> IntegerDisplayType: """ Get the current text display type for an integer token in the disassembly or IL views + :param int instr_addr: Address of the instruction or IL line containing the token :param int value: ``value`` field of the InstructionTextToken object for the token, usually the constant displayed :param int operand: Operand index of the token, defined as the number of OperandSeparatorTokens in the disassembly line before the token @@ -2635,6 +2637,7 @@ class Function: ) -> None: """ Change the text display type for an integer token in the disassembly or IL views + :param int instr_addr: Address of the instruction or IL line containing the token :param int value: ``value`` field of the InstructionTextToken object for the token, usually the constant displayed :param int operand: Operand index of the token, defined as the number of OperandSeparatorTokens in the disassembly line before the token @@ -2650,9 +2653,10 @@ class Function: def reanalyze(self, update_type: Optional[FunctionUpdateType] = FunctionUpdateType.UserFunctionUpdate) -> None: """ ``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. + .. warning:: If analysis_skipped is True, using this API will not trigger re-analysis. Instead, set `analysis_skipped` to `False`. :rtype: None """ @@ -2661,6 +2665,7 @@ class Function: def mark_updates_required(self, update_type: Optional[FunctionUpdateType] = FunctionUpdateType.UserFunctionUpdate) -> None: """ ``mark_updates_required`` indicates that this function needs to be reanalyzed during the next update cycle + :param enums.FunctionUpdateType update_type: (optional) Desired update type :rtype: None @@ -2670,6 +2675,7 @@ class Function: def mark_caller_updates_required(self, update_type: Optional[FunctionUpdateType] = FunctionUpdateType.UserFunctionUpdate) -> None: """ ``mark_caller_updates_required`` indicates that callers of this function need to be reanalyzed during the next update cycle + :param enums.FunctionUpdateType update_type: (optional) Desired update type :rtype: None |
