(self, **changes)
| 959 | self.z = self.x + self.y |
| 960 | |
| 961 | def __replace__(self, **changes): |
| 962 | x = changes.get('x', self.x) |
| 963 | y = changes.get('y', self.y) |
| 964 | return type(self)(x, y) |
| 965 | |
| 966 | attrs = attrgetter('x', 'y', 'z') |
| 967 | a = A(11, 22) |
no test coverage detected