diff options
Diffstat (limited to 'python/mediumlevelil.py')
| -rw-r--r-- | python/mediumlevelil.py | 6 |
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 |
