IMF-utils.py

三个函数

def evaluate(s):
    try:
        return eval(s)#eval()函数用来执行一个字符串表达式,并返回表达式的值
    except:
        error('evalutate error:%s'%s)

def error(s):
    print(s)
    if const.DEBUG:#const.py里设置为TRUE
        sys.exit(-1)

def multiproc(func, l, core = 4):
    pool = Pool(core)
    ret = pool.map(func, l)#对l里的每一个进行func操作,返回列表
    pool.terminate()
    return ret

你可能感兴趣的:(IMF-utils.py)