コード例 #1
0
ファイル: polynomial.py プロジェクト: haael/white-box-fapkc
		def __hash__(self):
			if not self.__dict__:
				return 0
			Immutable.__hash__(self)
			try:
				return Term.__hash__(self)
			except AttributeError:
				print(self.__dict__)
				raise
コード例 #2
0
ファイル: polynomial.py プロジェクト: haael/white-box-fapkc
	def __hash__(self):
		Immutable.__hash__(self)
		return Term.__hash__(self)