(self)
| 621 | return sorted(self.multi_items()) == sorted(other.multi_items()) |
| 622 | |
| 623 | def __str__(self) -> str: |
| 624 | return urlencode(self.multi_items()) |
| 625 | |
| 626 | def __repr__(self) -> str: |
| 627 | class_name = self.__class__.__name__ |
nothing calls this directly
no test coverage detected