Skip to content

Commit

Permalink
Merge pull request #1481 from weaversam8/bugfix/1476-symbol-eq
Browse files Browse the repository at this point in the history
Fix `Symbol.__eq__` to return false when comparing with None
  • Loading branch information
erezsh authored Oct 26, 2024
2 parents 24d0cf7 + 9d35d1b commit 24f19a3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion lark/grammar.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ def __init__(self, name: str) -> None:
self.name = name

def __eq__(self, other):
assert isinstance(other, Symbol), other
if not isinstance(other, Symbol):
return NotImplemented
return self.is_term == other.is_term and self.name == other.name

def __ne__(self, other):
Expand Down
7 changes: 5 additions & 2 deletions tests/test_grammar.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from lark import Lark, Token, Tree, ParseError, UnexpectedInput
from lark.load_grammar import GrammarError, GRAMMAR_ERRORS, find_grammar_errors, list_grammar_imports
from lark.load_grammar import FromPackageLoader

from lark.grammar import Symbol

class TestGrammar(TestCase):
def setUp(self):
Expand Down Expand Up @@ -296,8 +296,11 @@ def test_line_breaks(self):
p.parse('ab')


def test_symbol_eq(self):
a = None
b = Symbol("abc")


self.assertNotEqual(a, b)


if __name__ == '__main__':
Expand Down

0 comments on commit 24f19a3

Please sign in to comment.