idc.py: Removed redundant definition of OpFloat()

This commit is contained in:
gergely.erdelyi 2009-09-07 17:16:06 +00:00
parent e48d6a99ff
commit 39d692c258

View File

@ -1173,19 +1173,6 @@ def OpFloat(ea, n):
return idaapi.op_flt(ea, n) return idaapi.op_flt(ea, n)
def OpFloat(ea, n):
"""
Convert operand to a floating-point number
@param ea: linear address
@param n: number of operand
- 0 - the first operand
- 1 - the second, third and all other operands
- -1 - all operands
"""
return idaapi.op_flt(ea, n)
def OpAlt(ea, n, opstr): def OpAlt(ea, n, opstr):
""" """
Specify operand represenation manually. Specify operand represenation manually.