Method: pylint.message.message_definition.MessageDefinition.__eq__
Calls: 3, Exceptions: 0, Paths: 2Back
Path 1: 2 calls (0.67)
MessageDefinition (2)
True (2)
1def __eq__(self, other: Any) -> bool:
2 return (
3 isinstance(other, MessageDefinition)
4 and self.msgid == other.msgid
5 and self.symbol == other.symbol
6 )
Path 2: 1 calls (0.33)
MessageDefinition (1)
False (1)
1def __eq__(self, other: Any) -> bool:
2 return (
3 isinstance(other, MessageDefinition)
4 and self.msgid == other.msgid
5 and self.symbol == other.symbol
6 )