(self, **changes)
| 929 | self.z = self.x + self.y |
| 930 | |
| 931 | def __replace__(self, **changes): |
| 932 | x = changes.get('x', self.x) |
| 933 | y = changes.get('y', self.y) |
| 934 | return type(self)(x, y) |
| 935 | |
| 936 | attrs = attrgetter('x', 'y', 'z') |
| 937 | a = A(11, 22) |
no test coverage detected