(self)
| 314 | return sorted(self._list) == sorted(other._list) |
| 315 | |
| 316 | def __repr__(self) -> str: |
| 317 | class_name = self.__class__.__name__ |
| 318 | items = self.multi_items() |
| 319 | return f"{class_name}({items!r})" |
| 320 | |
| 321 | |
| 322 | class MultiDict(ImmutableMultiDict[Any, Any]): |
nothing calls this directly
no test coverage detected