def hash(self): if self._hash is None: #Use raw title because the pay details will occaisonally be incorrect, and worse: change self._hash = str(jhash(self.raw_title + self.description)) return self._hash
def hash(self): if self._hash is None: self._hash = str(jhash(self.title + self.description)) return self._hash