Dec. 7, 2015
4:09 p.m.
Anthony Green added the comment: The following example comes from IRC user ztane:
import threading, time
main_thread = threading.current_thread()
def foo(): time.sleep(10) print(main_thread.is_alive()) print(list(threading.enumerate()))
t = threading.Thread(target=foo) t.start()
False [<_MainThread(MainThread, stopped 140040101766976)>, <Thread(Thread-1, started 140040068695808)>] ---------- _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue25821> _______________________________________