Created
September 10, 2012 15:41
-
-
Save stepancheg/3691631 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
import threading | |
import os | |
class MyThread(threading.Thread): | |
def run(self): | |
sys.exit(1) | |
t = MyThread() | |
t.start() | |
t.join() | |
# vim: set ts=4 sw=4 et: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment