martin.spichty at gmail.com: > there may be a serious error in python's int() function: > > print int(float(2.8/0.1)) > > yields > > 27 > > instead of 28!! It is not an error but a normal artifact of decimal-to-binary conversion. Marko