aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mparser.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/mparser.py b/mparser.py
index 821ec35..27bec58 100644
--- a/mparser.py
+++ b/mparser.py
@@ -29,8 +29,6 @@ tokens = ['LPAREN',
'RPAREN',
'LBRACKET',
'RBRACKET',
- 'LBRACE',
- 'RBRACE',
'ATOM',
'COMMENT',
'ASSIGN',
@@ -53,8 +51,6 @@ t_LPAREN = '\('
t_RPAREN = '\)'
t_LBRACKET = '\['
t_RBRACKET = '\]'
-t_LBRACE = '\{'
-t_RBRACE = '\}'
t_ignore_COMMENT = '\\#.*?(?=\\n)'
t_COMMA = ','
t_DOT = '\.'