We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbc00f9 commit aa879d1Copy full SHA for aa879d1
docs/index.rst
@@ -120,6 +120,13 @@ is limited (Even though Tornado is built on ``asyncio``, which
120
supports Windows, Tornado does not use the APIs that are necessary for
121
scalable networking on Windows).
122
123
+On Windows, Tornado requires the ``WindowsSelectorEventLoop``. This is
124
+the default in Python 3.7 and older, but Python 3.8 defaults to an
125
+event loop that is not compatible with Tornado. Applications that use
126
+Tornado on Windows with Python 3.8 must call
127
+``asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())``
128
+at the beginning of their ``main`` file/function.
129
+
130
Documentation
131
-------------
132
0 commit comments