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):
2086
2086
def _init_asyncio_patch (self ):
2087
2087
"""set default asyncio policy to be compatible with tornado
2088
2088
2089
- Tornado <6.1 is not compatible with the default
2089
+ Tornado 6 (at least) is not compatible with the default
2090
2090
asyncio implementation on Windows
2091
2091
2092
2092
Pick the older SelectorEventLoopPolicy on Windows
@@ -2099,7 +2099,7 @@ def _init_asyncio_patch(self):
2099
2099
FIXME: if/when tornado supports the defaults in asyncio,
2100
2100
remove and bump tornado requirement for py38
2101
2101
"""
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 ):
2103
2103
import asyncio
2104
2104
try :
2105
2105
from asyncio import (
You can’t perform that action at this time.
0 commit comments