import os, threading def run(): os.exit(3) t = threading.Thread(target=run) t.start()