Skip to content

Commit

Permalink
asyncio: Fix docs for default event loop (#14308)
Browse files Browse the repository at this point in the history
When the Windows default event loop changed, `asyncio-policy.rst` was updated but `asyncio-eventloop.rst` was missed.
  • Loading branch information
bdarnell authored and 1st1 committed Jun 22, 2019
1 parent c8a3541 commit 9ffca67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Doc/library/asyncio-eventloop.rst
Expand Up @@ -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
Expand Down

0 comments on commit 9ffca67

Please sign in to comment.