diff options
Diffstat (limited to 'lexer.py')
| -rw-r--r-- | lexer.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ OPEN_PAREN = "(" CLOSE_PAREN = ")" DIGITS = "0123456789" LETTERS = "abcdefghijklmnopqrstuvwxyz" -PUNCTUATION = "-_!*$@%^&=+/" +PUNCTUATION = "-_!*$@%^&=+/?<>~" SYMBOL_VALS = list(LETTERS + LETTERS.upper() + DIGITS + PUNCTUATION) |
