Skip to content

Commit ccf898a

Browse files
authored
Create lextab.py
1 parent 81159ff commit ccf898a

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

lextab.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# lextab.py. This file automatically created by PLY (version 3.11). Don't edit!
2+
_tabversion = '3.10'
3+
_lextokens = set(('COLON', 'DIVIDE', 'EQUALS', 'LPAREN', 'MINUS', 'NAME', 'NUMBER_DOUBLE', 'NUMBER_INT', 'PLUS', 'RPAREN', 'TIMES'))
4+
_lexreflags = 64
5+
_lexliterals = ''
6+
_lexstateinfo = {'INITIAL': 'inclusive'}
7+
_lexstatere = {'INITIAL': [('(?P<t_NUMBER_DOUBLE>\\d+\\.\\d+)|(?P<t_NUMBER_INT>\\d+)|(?P<t_newline>\\n+)|(?P<t_NAME>[a-zA-Z_][a-zA-Z0-9_]*)|(?P<t_LPAREN>\\()|(?P<t_RPAREN>\\))|(?P<t_PLUS>\\+)|(?P<t_TIMES>\\*)|(?P<t_COLON>,)|(?P<t_EQUALS>=)|(?P<t_MINUS>-)|(?P<t_DIVIDE>/)', [None, ('t_NUMBER_DOUBLE', 'NUMBER_DOUBLE'), ('t_NUMBER_INT', 'NUMBER_INT'), ('t_newline', 'newline'), (None, 'NAME'), (None, 'LPAREN'), (None, 'RPAREN'), (None, 'PLUS'), (None, 'TIMES'), (None, 'COLON'), (None, 'EQUALS'), (None, 'MINUS'), (None, 'DIVIDE')])]}
8+
_lexstateignore = {'INITIAL': ' \t'}
9+
_lexstateerrorf = {'INITIAL': 't_error'}
10+
_lexstateeoff = {}

0 commit comments

Comments
 (0)