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 <rep...@bugs.python.org> <http://bugs.python.org/issue25821> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com