Ejemplo n.º 1
0
 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
Ejemplo n.º 2
0
	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
Ejemplo n.º 3
0
 def hash(self):
     if self._hash is None:
         self._hash = str(jhash(self.title + self.description))
     return self._hash
Ejemplo n.º 4
0
	def hash(self):
		if self._hash is None:
			self._hash = str(jhash(self.title + self.description))
		return self._hash