您的位置:首页 > 编程语言 > Python开发

Fatal Python error: PyImport_GetModuleDict: no module dictionary!

2016-03-18 17:01 2266 查看
The problem is that when you run this as a stand alone script you have a lot of daemon threads in doWork, but the script will exit
when only daemon threads are left, so they all get killed by the interpreter exiting. When you run it interactively in IDLE the interpreter doesn't exit, so you don't run into that problem.
http://stackoverflow.com/questions/17679715/fatal-python-error-pyimport-getmoduledict-no-module-dictionary
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: