天真酒窝

文章
6
资源
0
加入时间
2年10月21天

python中守护线程_在Python中打印守护线程异常

Python不打印守护进程线程中引发的异常的回溯消息。在例如,此代码创建守护线程并在新线程中引发异常:def error_raiser():raise Exceptionimport threadingthread = threading.Thread(target=error_raiser)thread.daemon = Truethread.start()但不打印回溯。(没有输出)。在但是,如...