| 207 | def test_floatconversion(self): |
| 208 | # Make sure that calls to __float__() work properly |
| 209 | class Foo2(float): |
| 210 | def __float__(self): |
| 211 | return 42. |
| 212 | |
| 213 | class Foo3(float): |
| 214 | def __new__(cls, value=0.): |
no outgoing calls
searching dependent graphs…