We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2ed0d1 commit dc2facbCopy full SHA for dc2facb
Parser/pgen/token.py
@@ -31,7 +31,10 @@ def generate_opmap(tokens):
31
continue
32
33
name, op = pieces
34
-
35
yield (op.strip("'"), name)
36
+ # Yield independently <>. This is needed so it does not collide
37
+ # with the token generation in "generate_tokens" because if this
38
+ # symbol is included in Grammar/Tokens, it will collide with !=
39
+ # as it has the same name (NOTEQUAL).
40
yield ('<>', 'NOTEQUAL')
0 commit comments