I\'m trying to use multiprocessing\'s Pool.map() function to divide out work simultaneously. When I use the following code, it works fine:
multiprocessing
Pool.map()
Why not to use separate func?
def func(*args, **kwargs): return inst.method(args, kwargs) print pool.map(func, arr)