From 25e7218ccaf84025179d17723077218294312921 Mon Sep 17 00:00:00 2001 From: KyleMiles Date: Thu, 17 Oct 2024 17:01:28 -0400 Subject: Python API : Update .operands documentation --- python/lowlevelil.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'python/lowlevelil.py') diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 3cd4e7cc..dbb9f154 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -699,7 +699,11 @@ class LowLevelILInstruction(BaseILInstruction): @property def operands(self) -> List[LowLevelILOperandType]: - """Operands for the instruction""" + """ + Operands for the instruction + + Consider using more specific APIs for ``src``, ``dest``, ``params``, etc where appropriate. + """ return list(map(lambda x: x[1], self.detailed_operands)) @property -- cgit v1.3.1