From c3972d512a3d3da9b3c5442cde7ebef6740195e1 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sun, 2 Jun 2013 14:08:42 +0300 Subject: Removed braces from language syntax. --- mparser.py | 4 ---- 1 file changed, 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 = '\.' -- cgit v1.1