summaryrefslogtreecommitdiffstats
path: root/test/YACC/YACCCOM-fixture/myyacc.py
blob: 1502800716c2273c1744a9628346a2b45aa6b9dd (plain)
1
2
3
4
5
6
7
import sys
outfile = open(sys.argv[1], 'wb')
for f in sys.argv[2:]:
    infile = open(f, 'rb')
    for l in [l for l in infile.readlines() if l != b'/*yacc*/\n']:
        outfile.write(l)
sys.exit(0)