Python 2.7 on Windows, quot;assert main_name not in sys.modules, main_namequot; for all multiprocessing examples(Windows 上的 Python 2.7,“断言 main_name 不在 sys.modules、main_name 中对于所有多处理示例)
问题描述
有以下简单代码:
from multiprocessing import Process, freeze_support
def foo():
print 'hello'
if __name__ == '__main__':
freeze_support()
p = Process(target=foo)
p.start()
它在使用 Python 3.3 的 Linux 或 Windows 上运行良好,但在使用 Python 2.7 的 Windows 上失败.
It works good on Linux or Windows with Python 3.3, but fails on Windows with Python 2.7.
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "c:Python27libmultiprocessingforking.py", line 346, in main
prepare(preparation_data)
File "c:Python27libmultiprocessingforking.py", line 454, in prepare
assert main_name not in sys.modules, main_name
AssertionError: thread
一般来说,我尝试的所有多处理示例都在该设置上失败.为什么?
Generally speaking, all multiprocessing examples i tried fail on that setup. Why?
推荐答案
这是一个已知的错误:
http://bugs.python.org/issue10845
不确定这是否会被移植到 2.7.X.
Not sure if this will ever get ported to 2.7.X.
这篇关于Windows 上的 Python 2.7,“断言 main_name 不在 sys.modules、main_name 中"对于所有多处理示例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Windows 上的 Python 2.7,“断言 main_name 不在 sys.modules、main_name 中"对于所有多处理示例
基础教程推荐
- 对多索引数据帧的列进行排序 2022-01-01
- Python 中是否有任何支持将长字符串转储为块文字或折叠块的 yaml 库? 2022-01-01
- 在 Django Admin 中使用内联 OneToOneField 2022-01-01
- 在 Python 中将货币解析为数字 2022-01-01
- Python,确定字符串是否应转换为 Int 或 Float 2022-01-01
- 比较两个文本文件以找出差异并将它们输出到新的文本文件 2022-01-01
- kivy 应用程序中的一个简单网页作为小部件 2022-01-01
- Kivy 使用 opencv.调整图像大小 2022-01-01
- matplotlib 设置 yaxis 标签大小 2022-01-01
- 究竟什么是“容器"?在蟒蛇?(以及所有的 python 容器类型是什么?) 2022-01-01
