| 211 | return 42. |
| 212 | |
| 213 | class Foo3(float): |
| 214 | def __new__(cls, value=0.): |
| 215 | return float.__new__(cls, 2*value) |
| 216 | |
| 217 | def __float__(self): |
| 218 | return self |
| 219 | |
| 220 | class Foo4(float): |
| 221 | def __float__(self): |
no outgoing calls
searching dependent graphs…