summaryrefslogtreecommitdiff
path: root/tests/lex_error2.py
blob: 8914ab63f485cb721b6fa250115fa0b12703962c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# lex_error2.py
#
# t_error defined, but not function

import ply.lex as lex

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

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

t_error = "foo"



lex.lex()