remove-funcs.py 144 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import sys input = open(sys.argv[1], "r") for line in input: if "@interesting" in line: sys.exit(0) sys.exit(1) # IR isn't interesting