Commit a193b4c2 authored by Taddeus Kroes's avatar Taddeus Kroes

Removed COMMA token from explicit lexing script (was elready in operator list).

parent 41047c7e
......@@ -436,7 +436,6 @@ class Parser(BisonParser):
[a-zA-Z] { returntoken(IDENTIFIER); }
"(" { returntoken(LPAREN); }
")" { returntoken(RPAREN); }
"," { returntoken(COMMA); }
""" + operators + r"""
"raise" { returntoken(RAISE); }
"graph" { returntoken(GRAPH); }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment