1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
# test __float__ function support
class TestFloat:
def __float__(self):
return 10.0
class TestStrFloat:
def __float__(self):
return "a"
class TestNonFloat:
def __float__(self):
return 6
class Test:
pass
print("%.1f" % float(TestFloat()))
print("%.1f" % TestFloat())
try:
print(float(TestStrFloat()))
except TypeError:
print("TypeError")
try:
print(float(TestNonFloat()))
except TypeError:
print("TypeError")
try:
print(float(Test()))
except TypeError:
print("TypeError")
|