Python thread 模块,allocate() 实例源码

我们从Python开源项目中,提取了以下1个代码示例,用于说明如何使用thread.allocate()

项目:python2-tracer    作者:extremecoders-re    | 项目源码 | 文件源码
def __init__(self):
        self.mutex = thread.allocate()
        self.todo = thread.allocate()
        self.todo.acquire()
        self.work = []
        self.busy = 0