Home | History | Annotate | Download | only in test
      1 # lex_module.py
      2 #
      3 
      4 import sys
      5 if ".." not in sys.path: sys.path.insert(0,"..")
      6 
      7 import ply.lex as lex
      8 import lex_module_import
      9 lex.lex(module=lex_module_import)
     10 lex.runmain(data="3+4")
     11