diff --git a/test.py b/test.py deleted file mode 100644 index 3fb0e57..0000000 --- a/test.py +++ /dev/null @@ -1,22 +0,0 @@ -s = "gwejgwe -gewjgewjgwe -gewjgewjgwe -gejwgew -gewgewjge" - -import lex2 - -lines = [ - 'this is the first line', - '<< EOF;' - ' abracadra hocus pocus', - ' EOF', - 'EOF', - '"this is a double-quoted string" and this is not...', - "we're done", -] -g = lex2.TestGrammar() -l = lex2.Lexer('lexer', g) -l.lex(lines) -for t in l: - print '%-20r %r' % (t.name, t.string)