From af80858e888c5f36979da88fcb1080de7b848967 Mon Sep 17 00:00:00 2001 From: David Beazley Date: Thu, 27 Oct 2022 13:44:12 -0500 Subject: Reorganization. Added makefile --- tests/lex_ignore.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tests/lex_ignore.py (limited to 'tests/lex_ignore.py') diff --git a/tests/lex_ignore.py b/tests/lex_ignore.py new file mode 100644 index 0000000..b31fb39 --- /dev/null +++ b/tests/lex_ignore.py @@ -0,0 +1,28 @@ +# lex_ignore.py +# +# Improperly specific ignore declaration + +import ply.lex as lex + +tokens = [ + "PLUS", + "MINUS", + "NUMBER", + ] + +t_PLUS = r'\+' +t_MINUS = r'-' +t_NUMBER = r'\d+' + +def t_ignore(t): + ' \t' + pass + +def t_error(t): + pass + +import sys + +lex.lex() + + -- cgit v1.2.1