summaryrefslogtreecommitdiff
path: root/ext/ply/test/lex_empty.py
blob: 96625f73277a78bfcb0a28a75bbc7a6288326390 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# lex_token.py
#
# No rules defined

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

import ply.lex as lex

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

sys.tracebacklimit = 0

lex.lex()