Esempio n. 1
0
		def __hash__(self):
			if not self.__dict__:
				return 0
			Immutable.__hash__(self)
			try:
				return Term.__hash__(self)
			except AttributeError:
				print(self.__dict__)
				raise
Esempio n. 2
0
	def __hash__(self):
		Immutable.__hash__(self)
		return Term.__hash__(self)