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

Exception happened during processing of request from ('127.0.0.1', 65066)
Traceback (most recent call last):
File "C:Python27libSocketServer.py", line 284, in _handle_request_nobloc
self.process_request(request, client_address)
File "C:Python27libSocketServer.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模块就是跨平台版本的多进程模块。
原文地址:https://www.cnblogs.com/arhatlohan/p/4733157.html