comparison ply-3.8/test/lex_literal3.py @ 7267:343ff337a19b

<ais523> ` tar -xf ply-3.8.tar.gz
author HackBot
date Wed, 23 Mar 2016 02:40:16 +0000
parents
children
comparison
equal deleted inserted replaced
7266:61a39a120dee 7267:343ff337a19b
1 # lex_literal3.py
2 #
3 # An empty literal specification given as a list
4 # Issue 8 : Literals empty list causes IndexError
5
6 import sys
7 if ".." not in sys.path: sys.path.insert(0,"..")
8
9 import ply.lex as lex
10
11 tokens = [
12 "NUMBER",
13 ]
14
15 literals = []
16
17 def t_NUMBER(t):
18 r'\d+'
19 return t
20
21 def t_error(t):
22 pass
23
24 lex.lex()
25
26