(self, *args, **kwargs)
| 561 | |
| 562 | class MyCall(Call): |
| 563 | def __init__(self, *args, **kwargs): |
| 564 | self.hooray = kwargs.pop("hooray") |
| 565 | super().__init__(*args, **kwargs) |
| 566 | |
| 567 | clone = orig.clone(into=MyCall, with_={"hooray": "woo"}) |
| 568 | assert clone.hooray == "woo" |