summaryrefslogtreecommitdiff
path: root/ext/ply/test/lex_token3.py
blob: 27ce9476d0b07e1357323e86d6930ab20159ad1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# lex_token.py
#
# tokens is right type, but is missing a token for one rule

import sys
sys.path.insert(0,"..")

import ply.lex as lex

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

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

def t_error(t):
    pass


sys.tracebacklimit = 0

lex.lex()