(self)
| 1174 | return self._replace(variables, indexes=indexes, attrs=attrs, encoding=encoding) |
| 1175 | |
| 1176 | def __copy__(self) -> Self: |
| 1177 | return self._copy(deep=False) |
| 1178 | |
| 1179 | def __deepcopy__(self, memo: dict[int, Any] | None = None) -> Self: |
| 1180 | return self._copy(deep=True, memo=memo) |