File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2086,7 +2086,7 @@ def init_shutdown_no_activity(self):
20862086 def _init_asyncio_patch (self ):
20872087 """set default asyncio policy to be compatible with tornado
20882088
2089- Tornado <6.1 is not compatible with the default
2089+ Tornado 6 (at least) is not compatible with the default
20902090 asyncio implementation on Windows
20912091
20922092 Pick the older SelectorEventLoopPolicy on Windows
@@ -2099,7 +2099,7 @@ def _init_asyncio_patch(self):
20992099 FIXME: if/when tornado supports the defaults in asyncio,
21002100 remove and bump tornado requirement for py38
21012101 """
2102- if sys .platform .startswith ("win" ) and sys .version_info >= (3 , 8 ) and tornado . version_info < ( 6 , 1 ) :
2102+ if sys .platform .startswith ("win" ) and sys .version_info >= (3 , 8 ):
21032103 import asyncio
21042104 try :
21052105 from asyncio import (
You can’t perform that action at this time.
0 commit comments