(self)
| 1554 | return self.attrs == other.attrs and self.immutable == other.immutable |
| 1555 | |
| 1556 | def copy(self) -> ExtraAttrs: |
| 1557 | return ExtraAttrs(self.attrs.copy(), self.immutable.copy(), self.mod_name) |
| 1558 | |
| 1559 | def __repr__(self) -> str: |
| 1560 | return f"ExtraAttrs({self.attrs!r}, {self.immutable!r}, {self.mod_name!r})" |