diff options
Diffstat (limited to 'third_party/ply/test/lex_doc1.py')
-rw-r--r-- | third_party/ply/test/lex_doc1.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/third_party/ply/test/lex_doc1.py b/third_party/ply/test/lex_doc1.py new file mode 100644 index 00000000..8a2bfcce --- /dev/null +++ b/third_party/ply/test/lex_doc1.py @@ -0,0 +1,26 @@ +# lex_doc1.py +# +# Missing documentation string + +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(t): + pass + +def t_error(t): + pass + +lex.lex() + + |