根据 python 2.7.3 文档multiprocessing.Event
是threading.Event
. 但是,当我使用以下代码时:
from multiprocessing import Event
test = Event()
test.set()
test.isSet()
但是我收到此错误:
AttributeError: 'Event' Object has no attribute 'isSet'
是什么赋予了?为什么 multiprocessing Event 没有方法来检查它是否已设置?
编辑:原来 is_set 在多处理事件类中......仍然是文档撒谎