Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Doc/library/multiprocessing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2173,7 +2173,8 @@ with the :class:`Pool` class.

.. method:: apply_async(func[, args[, kwds[, callback[, error_callback]]]])

A variant of the :meth:`apply` method which returns a result object.
A variant of the :meth:`apply` method which returns a
:class:`~multiprocessing.pool.AsyncResult` object.

If *callback* is specified then it should be a callable which accepts a
single argument. When the result becomes ready *callback* is applied to
Expand Down Expand Up @@ -2203,7 +2204,8 @@ with the :class:`Pool` class.

.. method:: map_async(func, iterable[, chunksize[, callback[, error_callback]]])

A variant of the :meth:`.map` method which returns a result object.
A variant of the :meth:`.map` method which returns a
:class:`~multiprocessing.pool.AsyncResult` object.

If *callback* is specified then it should be a callable which accepts a
single argument. When the result becomes ready *callback* is applied to
Expand Down