summaryrefslogtreecommitdiff
path: root/test/lex_dup3.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/lex_dup3.py')
-rw-r--r--test/lex_dup3.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/lex_dup3.py b/test/lex_dup3.py
deleted file mode 100644
index 94b5592..0000000
--- a/test/lex_dup3.py
+++ /dev/null
@@ -1,31 +0,0 @@
-# lex_dup3.py
-#
-# Duplicated rule specifiers
-
-import sys
-if ".." not in sys.path: sys.path.insert(0,"..")
-
-import ply.lex as lex
-
-tokens = [
- "PLUS",
- "MINUS",
- "NUMBER",
- ]
-
-t_PLUS = r'\+'
-t_MINUS = r'-'
-t_NUMBER = r'\d+'
-
-def t_NUMBER(t):
- r'\d+'
- pass
-
-def t_error(t):
- pass
-
-
-
-lex.lex()
-
-