Deleted Added
sdiff udiff text old ( 4479:61d3ed46e373 ) new ( 6498:e21e9ab5fad0 )
full compact
1# lex_ignore.py
2#
3# Improperly specific ignore declaration
4
5import sys
6if ".." not in sys.path: sys.path.insert(0,"..")
7
8import ply.lex as lex
9
10tokens = [
11 "PLUS",
12 "MINUS",
13 "NUMBER",
14 ]

--- 17 unchanged lines hidden ---