summaryrefslogtreecommitdiff
path: root/python/mediumlevelil.py
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2024-10-17 17:01:28 -0400
committerKyleMiles <krm504@nyu.edu>2024-11-03 10:36:12 -0500
commit25e7218ccaf84025179d17723077218294312921 (patch)
tree975f506e8f10a3524b8702906a8651e9fceceac1 /python/mediumlevelil.py
parent1ab74069b4f735e3eac62306b466b40c20e3aac1 (diff)
Python API : Update .operands documentation
Diffstat (limited to 'python/mediumlevelil.py')
-rw-r--r--python/mediumlevelil.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py
index fc9ba398..267076db 100644
--- a/python/mediumlevelil.py
+++ b/python/mediumlevelil.py
@@ -447,7 +447,11 @@ class MediumLevelILInstruction(BaseILInstruction):
@property
def operands(self) -> List[MediumLevelILOperandType]:
- """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