From 9e1de1b3dda78250012f4e03963e4d8916a8c8cd Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Thu, 29 Feb 2024 13:21:16 -0500 Subject: link from traverse APIs to examples --- python/lowlevelil.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/lowlevelil.py') diff --git a/python/lowlevelil.py b/python/lowlevelil.py index e12623a4..9b2bd4ae 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -683,7 +683,7 @@ class LowLevelILInstruction(BaseILInstruction): """ ``traverse`` is a generator that allows you to traverse the LowLevelILInstruction in a depth-first manner. It will yield the result of the callback function for each node in the tree. Arguments can be passed to the callback function using - ``args`` and ``kwargs``. + ``args`` and ``kwargs``. See the `Developer Docs `_ for more examples. :param Callable[[LowLevelILInstruction, Any], Any] cb: The callback function to call for each node in the LowLevelILInstruction :param Any args: Custom user-defined arguments @@ -3258,7 +3258,7 @@ class LowLevelILFunction: def traverse(self, cb: Callable[['LowLevelILInstruction', Any], Any], *args: Any, **kwargs: Any) -> Iterator[Any]: """ ``traverse`` iterates through all the instructions in the LowLevelILFunction and calls the callback function for - each instruction and sub-instruction. + each instruction and sub-instruction. See the `Developer Docs `_ for more examples. :param Callable[[LowLevelILInstruction, Any], Any] cb: The callback function to call for each node in the LowLevelILInstruction :param Any args: Custom user-defined arguments -- cgit v1.3.1