summaryrefslogtreecommitdiff
path: root/tests/lex_token3.py
blob: 3b71b3ac1acd0bbeda9794e137a1e9da7cd32b33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# lex_token3.py
#
# tokens is right type, but is missing a token for one rule

import ply.lex as lex

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

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

def t_error(t):
    pass

lex.lex()