brintos

brintos / llvm-project-archived public Read only

0
0
Text · 208 B · eb736ab Raw
12 lines · python
1import os2import sys3 4 5def execute(fileName):6    sys.stderr.write(7        "error: external '{}' command called unexpectedly\n".format(8            os.path.basename(fileName)9        )10    )11    sys.exit(1)12