06 2013 档案
摘要:import tracebackfrom multiprocessing.pool import Poolimport multiprocessing# Shortcut to multiprocessing's loggerdef error(msg, *args): return multiprocessing.get_logger().error(msg, *args)class LogExceptions(object): def __init__(self, callable): self.__callable = callable retur...
阅读全文