summaryrefslogtreecommitdiffstats
path: root/chall/ply-2.2/test/lex_empty.py
diff options
context:
space:
mode:
Diffstat (limited to 'chall/ply-2.2/test/lex_empty.py')
-rw-r--r--chall/ply-2.2/test/lex_empty.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/chall/ply-2.2/test/lex_empty.py b/chall/ply-2.2/test/lex_empty.py
deleted file mode 100644
index 96625f7..0000000
--- a/chall/ply-2.2/test/lex_empty.py
+++ /dev/null
@@ -1,20 +0,0 @@
-# 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()
-
-