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 7ba1c00 commit ebe36f7Copy full SHA for ebe36f7
modmail/__init__.py
@@ -9,7 +9,9 @@
9
from modmail.log import ModmailLogger
10
11
12
-# On Windows, the selector event loop is required for aiodns.
+# on windows aiodns's asyncio support relies on APIs like add_reader (which aiodns uses)
13
+# are not guaranteed to be available, and in particular are not available when using the
14
+# ProactorEventLoop on Windows, this method is only supported with Windows SelectorEventLoop
15
if os.name == "nt":
16
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
17
0 commit comments