Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simple Documentation fix: Missing link to return type class. #21291

Merged
merged 2 commits into from
Jul 20, 2020
Merged
Changes from 1 commit
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
Next Next commit
Documentation fix: Added correct classname/typename of return value.
Volker-Weissmann committed Jul 3, 2020
commit 877acfb8d539bafbc816378aac566cdbc1312c90
4 changes: 2 additions & 2 deletions Doc/library/multiprocessing.rst
Original file line number Diff line number Diff line change
@@ -2173,7 +2173,7 @@ 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
@@ -2203,7 +2203,7 @@ 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