码迷,mamicode.com
首页 > 其他好文 > 详细

Socket.Server 'module' object has no attribute 'fork' 原因分析

时间:2015-08-15 22:52:54      阅读:528      评论:0      收藏:0      [点我收藏+]

标签:

Exception happened during processing of request from (‘127.0.0.1‘, 65066)
Traceback (most recent call last):
File "C:\Python27\lib\SocketServer.py", line 284, in _handle_request_nobloc
self.process_request(request, client_address)
File "C:\Python27\lib\SocketServer.py", line 545, in process_request
pid = os.fork()
AttributeError: ‘module‘ object has no attribute ‘fork‘



原因:
`os.fork` isn‘t available on Windows.


由于Python是跨平台的,自然也应该提供一个跨平台的多进程支持。multiprocessing模块就是跨平台版本的多进程模块。

Socket.Server 'module' object has no attribute 'fork' 原因分析

标签:

原文地址:http://www.cnblogs.com/arhatlohan/p/4733157.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!