summaryrefslogtreecommitdiff
path: root/test/lex_rule2.py
diff options
context:
space:
mode:
authorDavid Beazley <dave@dabeaz.com>2022-10-27 13:44:12 -0500
committerDavid Beazley <dave@dabeaz.com>2022-10-27 13:44:12 -0500
commitaf80858e888c5f36979da88fcb1080de7b848967 (patch)
tree2f2fb95414baee83e489eac1b936602599ea9eba /test/lex_rule2.py
parent818ab0684e33f5f513fc839673ff56ea330b6380 (diff)
downloadply-af80858e888c5f36979da88fcb1080de7b848967.tar.gz
Reorganization. Added makefile
Diffstat (limited to 'test/lex_rule2.py')
-rw-r--r--test/lex_rule2.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/test/lex_rule2.py b/test/lex_rule2.py
deleted file mode 100644
index 1c29d87..0000000
--- a/test/lex_rule2.py
+++ /dev/null
@@ -1,29 +0,0 @@
-# lex_rule2.py
-#
-# Rule function with incorrect number of arguments
-
-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'-'
-def t_NUMBER():
- r'\d+'
- return t
-
-def t_error(t):
- pass
-
-
-
-lex.lex()
-
-