Sha256: c91319566df4cf224bede3390eef8bdd9a80f152c641d1a75cebc930554363e1
Contents?: true
Size: 276 Bytes
Versions: 8
Compression:
Stored size: 276 Bytes
Contents
# lex_error2.py # # t_error defined, but not function 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'-' t_NUMBER = r'\d+' t_error = "foo" lex.lex()
Version data entries
8 entries across 8 versions & 1 rubygems