starmap_async(func, iterable[, chunksize[, callback[, error_back]]])
A combination of starmap()
and map_async()
that iterates over iterable of iterables and calls func with the iterables unpacked. Returns a result object.
New in version 3.3.
starmap_async(func, iterable[, chunksize[, callback[, error_back]]])
A combination of starmap()
and map_async()
that iterates over iterable of iterables and calls func with the iterables unpacked. Returns a result object.
New in version 3.3.
Please login to continue.