(self)
| 202 | return self.__document.copy() |
| 203 | |
| 204 | def __repr__(self) -> str: |
| 205 | document = self.document |
| 206 | return "Collation({})".format(", ".join(f"{key}={document[key]!r}" for key in document)) |
| 207 | |
| 208 | def __eq__(self, other: Any) -> bool: |
| 209 | if isinstance(other, Collation): |