(self, other: typing.Any)
| 616 | return hash(str(self)) |
| 617 | |
| 618 | def __eq__(self, other: typing.Any) -> bool: |
| 619 | if not isinstance(other, self.__class__): |
| 620 | return False |
| 621 | return sorted(self.multi_items()) == sorted(other.multi_items()) |
| 622 | |
| 623 | def __str__(self) -> str: |
| 624 | return urlencode(self.multi_items()) |
nothing calls this directly
no test coverage detected