summaryrefslogtreecommitdiff
path: root/tests/lex_error1.py
blob: fec028227e2378feef85361313ce31cdb3d0d284 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# lex_error1.py
#
# Missing t_error() rule

import ply.lex as lex

tokens = [
    "PLUS",
    "MINUS",
    "NUMBER",
    ]

t_PLUS = r'\+'
t_MINUS = r'-'
t_NUMBER = r'\d+'



lex.lex()