示例#1
0
	def __eq__(self, other):
		return False if type(self) != type(other) else IntEnum.__eq__(self, other)
示例#2
0
 def __eq__(self, other):
     return False if type(self) != type(other) else IntEnum.__eq__(self, other)
示例#3
0
 def __eq__(self: "MorphosyntacticFeature",
            other: "MorphosyntacticFeature") -> bool:
     return False if type(self) != type(other) else IntEnum.__eq__(
         self, other)