Both Pool.startmap and Pool.apply_async set starmap=True when creating
tasks. Previously Pool.starmap didn't have correct argument list. The
correct format should be:
[(args, kwargs), ...] (used by Pool.apply_async) or
[(args,), ...] (used by Pool.starmap)
Both Pool.startmap and Pool.apply_async set
starmap=True
when creating tasks. Previously Pool.starmap didn't have correct argument list. The correct format should be: