Home
last modified time | relevance | path

Searched refs:starmap_async (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/multiprocessing/
Dpool.py278 def starmap_async(self, func, iterable, chunksize=None, callback=None, member in Pool
/external/python/cpython3/Lib/test/
D_test_multiprocessing.py2267 self.assertEqual(self.pool.starmap_async(mul, tuples).get(),
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1550 :meth:`~multiprocessing.pool.Pool.starmap_async` provide
/external/python/cpython3/Doc/library/
Dmultiprocessing.rst2201 .. method:: starmap_async(func, iterable[, chunksize[, callback[, error_callback]]])
/external/python/cpython3/Misc/
DHISTORY8907 - Issue #12708: Add starmap() and starmap_async() methods (similar to