blob: 49c303f81a0d1c969d10763424211a4ecaff553e [file] [log] [blame]
# lex_token.py
#
# Improperly specific ignore declaration
import lex
tokens = [
"PLUS",
"MINUS",
"NUMBER",
]
t_PLUS = r'\+'
t_MINUS = r'-'
t_NUMBER = r'\d+'
def t_ignore(t):
' \t'
pass
def t_error(t):
pass
import sys
sys.tracebacklimit = 0
lex.lex()