summaryrefslogtreecommitdiffstats
path: root/Doc/library/asyncio-eventloop.rst
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-10-21 21:41:23 (GMT)
committerYury Selivanov <yury@magic.io>2016-10-21 21:41:23 (GMT)
commit6330f2a5cedffe0a3c70c681a821a03b563d7db0 (patch)
tree89cc2e8e202487d4eb6f0d8dedb36159ffbd9db4 /Doc/library/asyncio-eventloop.rst
parent2ae0d6447135597a231d7cd7666d44a50451cc71 (diff)
parente8a6045fea844f561021c2fd8ffd965749026699 (diff)
downloadcpython-6330f2a5cedffe0a3c70c681a821a03b563d7db0.zip
cpython-6330f2a5cedffe0a3c70c681a821a03b563d7db0.tar.gz
cpython-6330f2a5cedffe0a3c70c681a821a03b563d7db0.tar.bz2
Merge 3.5 (issue #26796)
Diffstat (limited to 'Doc/library/asyncio-eventloop.rst')
-rw-r--r--Doc/library/asyncio-eventloop.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index a88f777..ed1d773 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -671,6 +671,13 @@ pool of processes). By default, an event loop uses a thread pool executor
This method is a :ref:`coroutine <coroutine>`.
+ .. versionchanged:: 3.5.3
+ :meth:`BaseEventLoop.run_in_executor` no longer configures the
+ ``max_workers`` of the thread pool executor it creates, instead
+ leaving it up to the thread pool executor
+ (:class:`~concurrent.futures.ThreadPoolExecutor`) to set the
+ default.
+
.. method:: AbstractEventLoop.set_default_executor(executor)
Set the default executor used by :meth:`run_in_executor`.