]> granicus.if.org Git - python/commitdiff
asyncio: Fix docs for default event loop (#14308)
authorBen Darnell <ben@bendarnell.com>
Sat, 22 Jun 2019 17:38:21 +0000 (13:38 -0400)
committerYury Selivanov <yury@magic.io>
Sat, 22 Jun 2019 17:38:20 +0000 (10:38 -0700)
When the Windows default event loop changed, `asyncio-policy.rst` was updated but `asyncio-eventloop.rst` was missed.

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