(self, other)
| 1256 | return self.payload == other.payload |
| 1257 | |
| 1258 | def __ne__(self, other): |
| 1259 | # type: (Any) -> bool |
| 1260 | return not self.__eq__(other) |
| 1261 | |
| 1262 | # Note: setting __hash__ to None is the standard way |
| 1263 | # of making an object un-hashable. mypy doesn't know that |