summaryrefslogtreecommitdiff
path: root/test/lex_token2.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/lex_token2.py')
-rw-r--r--test/lex_token2.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/lex_token2.py b/test/lex_token2.py
deleted file mode 100644
index 6e65ab0..0000000
--- a/test/lex_token2.py
+++ /dev/null
@@ -1,22 +0,0 @@
-# lex_token2.py
-#
-# Tests for tokens of wrong type
-
-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_error(t):
- pass
-
-
-lex.lex()
-
-