bpo-34687: asynico uses ProactorEventLoop by default by vstinner · Pull Request #9538 · python/cpython (original) (raw)

Oh, one more change... 5 lines above this line:

    The default asyncio policy.  Uses :class:`SelectorEventLoop`
    on both Unix and Windows platforms.

    There is no need to install the default policy manually. asyncio
    is configured to use the default policy automatically.

please change it to

    The default asyncio policy.  Uses :class:`SelectorEventLoop`
    on Unix and :class:`ProactorEventLoop` on Windows.

    There is no need to install the default policy manually. asyncio
    is configured to use the default policy automatically.

    .. versionchanged:: 3.8
       :class:`ProactorEventLoop` is now default on Windows.