Return the hash of the serialized object
(self)
| 109 | return r |
| 110 | |
| 111 | def GetHash(self): |
| 112 | """Return the hash of the serialized object""" |
| 113 | return Hash(self.serialize()) |
| 114 | |
| 115 | def __eq__(self, other): |
| 116 | if (not isinstance(other, self.__class__) and |