On Mon, 25 Jun 2007, Torgil Svensson wrote: > handled with sub-classing. At a minimum "float(str(nan))==nan" should > evaluate as True. False. No NaN should ever compare equal to anything, even itself. But if the system is 754-compliant, it won't. "isnan(float(str(nan))) == True" would be nice, though. w