コード例 #1
0
ファイル: orthophonology.py プロジェクト: cltk/cltk
	def __eq__(self, other):
		return False if type(self) != type(other) else IntEnum.__eq__(self, other)
コード例 #2
0
ファイル: morphosyntax.py プロジェクト: wmshort/cltkv1
 def __eq__(self, other):
     return False if type(self) != type(other) else IntEnum.__eq__(self, other)
コード例 #3
0
ファイル: morphosyntax.py プロジェクト: kylepjohnson/cltkv1
 def __eq__(self: "MorphosyntacticFeature",
            other: "MorphosyntacticFeature") -> bool:
     return False if type(self) != type(other) else IntEnum.__eq__(
         self, other)