]> granicus.if.org Git - python/commitdiff
asyncio: Fix docs for default event loop (GH-14308)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 24 Jun 2019 00:33:00 +0000 (17:33 -0700)
committerGitHub <noreply@github.com>
Mon, 24 Jun 2019 00:33:00 +0000 (17:33 -0700)
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@bendarnell.com>
Doc/library/asyncio-eventloop.rst

index 8673f84e96382ec31e762c76c86d852f2a73b062..f763fd5f036d68fe7226b7aead164e604d44306b 100644 (file)
@@ -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