[Python-checkins] asyncio: Fix docs for default event loop (GH-14308)

Miss Islington (bot) webhook-mailer at python.org
Sun Jun 23 20:33:07 EDT 2019


https://github.com/python/cpython/commit/2e0ec5b4b7241d62e18e89474e27219cdbd51719
commit: 2e0ec5b4b7241d62e18e89474e27219cdbd51719
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-06-23T17:33:00-07:00
summary:

asyncio: Fix docs for default event loop (GH-14308)


When the Windows default event loop changed, `asyncio-policy.rst` was updated but `asyncio-eventloop.rst` was missed.
(cherry picked from commit 9ffca670ed4df42eb256e7144619a9d3a830e7c0)

Co-authored-by: Ben Darnell <ben at bendarnell.com>

files:
M Doc/library/asyncio-eventloop.rst

diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst
index 8673f84e9638..f763fd5f036d 100644
--- a/Doc/library/asyncio-eventloop.rst
+++ b/Doc/library/asyncio-eventloop.rst
@@ -1454,7 +1454,7 @@ asyncio ships with two different event loop implementations:
 :class:`SelectorEventLoop` and :class:`ProactorEventLoop`.
 
 By default asyncio is configured to use :class:`SelectorEventLoop`
-on all platforms.
+on Unix and :class:`ProactorEventLoop` on Windows.
 
 
 .. class:: SelectorEventLoop



More information about the Python-checkins mailing list