From 9cfee428e755caee9c3e8979fd1b68a669ccb51a Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Mon, 4 May 2020 17:24:16 -0400 Subject: Remove APIs that don't actually exist --- python/mediumlevelil.py | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'python/mediumlevelil.py') diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index 8b2a4c89..857d8cff 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -1012,18 +1012,6 @@ class MediumLevelILFunction(object): operand_list[i] = operands[i] return MediumLevelILExpr(core.BNMediumLevelILAddOperandList(self.handle, operand_list, len(operands))) - def operand(self, n, expr): - """ - ``operand`` sets the operand number of the expression ``expr`` and passes back ``expr`` without modification. - - :param int n: - :param MediumLevelILExpr expr: - :return: returns the expression ``expr`` unmodified - :rtype: MediumLevelILExpr - """ - core.BNMediumLevelILSetExprSourceOperand(self.handle, expr.index, n) - return expr - def finalize(self): """ ``finalize`` ends the function and computes the list of basic blocks. -- cgit v1.3.1