Allow whitespace in EOL continuation.
This commit is contained in:
parent
57cbee2f33
commit
af7c9dd6e0
|
@ -37,7 +37,7 @@ t_COMMENT = '\#[^\n]*'
|
|||
t_COMMA = ','
|
||||
t_DOT = '\.'
|
||||
t_STRING = "'[^']*'"
|
||||
t_EOL_CONTINUE = r'\\\n'
|
||||
t_EOL_CONTINUE = r'\\[ \t]*\n'
|
||||
t_EOL = r'\n'
|
||||
|
||||
t_ignore = ' \t'
|
||||
|
|
Loading…
Reference in New Issue