| 268 | """#3357: Recursive dispatch fails to find python function override""" |
| 269 | |
| 270 | class Data(m.Data): |
| 271 | def __init__(self, value): |
| 272 | super().__init__() |
| 273 | self.value = value |
| 274 | |
| 275 | class Adder(m.Adder): |
| 276 | def __call__(self, first, second, visitor): |
no outgoing calls