1

我正在尝试使用多处理来做一些工作。但是,我得到了那个错误。为什么会这样?下面是我的示例代码

def work(x, y):
    #doing something

def work_process(x, y):
    p = []

    for i in x:
        p.append(Process(target=work, args=(x, y)))
        p[i].start()

    for t in p:
        t.join()

    return result
4

1 回答 1

0

我写了一些有助于调试多处理错误的东西。它可以向您显示其他进程中异常/错误的完整回溯。

下载RemoteException.py

import RemoteException

@RemoteException.showError
def work(x, y):
    #doing something
于 2013-06-12T09:40:38.353 回答