Steven D'Aprano wrote: > More explicit than someDecimal == someFloat? Seems pretty explicit to > me. Yes. I mean at least specifying either float(someDecimal) == someFloat or someDecimal == Decimal(someFloat). Preferably also whether the conversion is to be as exact as possible or on a minimum-digits basis. -- Greg