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