diff options
Diffstat (limited to 'bparser.py')
-rwxr-xr-x | bparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -54,7 +54,7 @@ t_LBRACKET = '\[' t_RBRACKET = '\]' t_LBRACE = '\{' t_RBRACE = '\}' -t_COMMENT = '\#[^\n]*' +t_ignore_COMMENT = '\\#.*?(?=\\n)' t_COMMA = ',' t_DOT = '\.' t_COLON = ':' |