summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py6
1 files changed, 5 insertions, 1 deletions
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