You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In addition, we can catch NotImplementedError exception when invoking these functions, and prompt the user not to use ProactorEventLoop on Windows.
This is an optional idea.
On Windows, Python 3.8's default event loop is now
ProactorEventLoop
. [1]But tornado doesn't support
ProactorEventLoop
. [2]Should we use
SelectorEventLoop
explicitly on Windows?FYI, Python 3.8.0's release schedule: [3]
[1] https://docs.python.org/3.8/whatsnew/3.8.html#asyncio
[2] https://github.com/tornadoweb/tornado/blob/master/tornado/platform/asyncio.py#L15-L19
[3] https://www.python.org/dev/peps/pep-0569/#id6
The text was updated successfully, but these errors were encountered: