python RuntimeError: main thread is not in main loop

简介: python RuntimeError: main thread is not in main loop

 

RuntimeError: main thread is not in main loop这个错误记录一下

原始代码

def show(self):
            T = threading.Thread(target=self.__show, args=())
            T.start()

修正后代码

def show(self):
            T = threading.Thread(target=self.__show, args=())
            T.setDaemon(True)
            T.start()

记录一下

目录
相关文章
|
2月前
|
Python
5-5|python开启多线程入口必须在main,从python线程(而不是main线程)启动pyQt线程有什么坏处?...
5-5|python开启多线程入口必须在main,从python线程(而不是main线程)启动pyQt线程有什么坏处?...
|
3月前
|
IDE 测试技术 程序员
|
6月前
|
Python
python中if __name__ == '__main__'
python中if __name__ == '__main__'
50 3
|
6月前
|
Python
Python基础语法,解释一下Python中的if __name__ == "__main__"。
Python基础语法,解释一下Python中的if __name__ == "__main__"。
76 2
|
Python
Python 关于模块的几点介绍 。和。。和__all__和__main___和__file__
用来定义我们导出的内容可以有哪些的一个编码方式
38 0
|
6月前
|
数据采集 Rust Java
Python 为什么没有 main 函数?为什么我不推荐写 main 函数?
Python 为什么没有 main 函数?为什么我不推荐写 main 函数?
43 0
|
6月前
|
存储 安全 Python
什么是Python中的线程局部存储(Thread Local Storage)?
【2月更文挑战第3天】【2月更文挑战第6篇】
147 0
|
6月前
|
缓存 安全 程序员
Python 的并发编程:解释什么是线程安全(Thread Safety)?
Python 的并发编程:解释什么是线程安全(Thread Safety)?
226 1
|
6月前
|
存储 Shell Python
学Python,还不知道main函数吗
学Python,还不知道main函数吗