为什么我没有用到线程,运行debug的时候还是报错:_original_start_new_thread = thread_module._original_start_new_thread = thread_module.start_new_thread AttributeError: module 'thread' has no attribute 'start_new_thread'
时间: 2023-09-10 11:05:30 浏览: 159
这个问题可能是因为您的代码中使用了旧版本的 Python 线程模块 thread,而在新版本的 Python 中,该模块已被移除。在新版本的 Python 中,您应该使用 threading 模块来处理线程。如果您的代码中使用了 thread 模块,请尝试将其替换为 threading 模块,并使用 threading.Thread 类来创建线程。这应该可以解决您的问题。如果问题仍然存在,请提供更多代码和错误信息,以便我可以提供更具体的建议。
阅读全文