diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-24 00:23:38 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-08-24 00:23:38 +0300 |
commit | 9e0ae5398097e56490bcc720fe7ca56d50aec175 (patch) | |
tree | aa3316a3e4c42c77d968d70962c9b4b449ec5821 /Doc/library/concurrent.futures.rst | |
parent | 78ede7c96d016eb0149c876bcb32633e3182e904 (diff) | |
download | cpython-git-9e0ae5398097e56490bcc720fe7ca56d50aec175.tar.gz |
Issue #18757: Improved cross-references in the concurrent package.
Diffstat (limited to 'Doc/library/concurrent.futures.rst')
-rw-r--r-- | Doc/library/concurrent.futures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst index a12316c0e5..c2f92b305a 100644 --- a/Doc/library/concurrent.futures.rst +++ b/Doc/library/concurrent.futures.rst @@ -40,7 +40,7 @@ Executor Objects .. method:: map(func, *iterables, timeout=None) - Equivalent to ``map(func, *iterables)`` except *func* is executed + Equivalent to :func:`map(func, *iterables) <map>` except *func* is executed asynchronously and several calls to *func* may be made concurrently. The returned iterator raises a :exc:`TimeoutError` if :meth:`~iterator.__next__` is called and the result isn't available |