pythononwheels / pow_devel

development repo for PyhtonOnWheels framework
www.pythononwheels.org
MIT License
75 stars 10 forks source link

asyncio issue with Tornado, python 3.8 and windows #36

Closed pythononwheels closed 4 years ago

pythononwheels commented 4 years ago

See here: https://github.com/tornadoweb/tornado/issues/2751

pythononwheels commented 4 years ago

Solution taken form the proposal:

added:import asyncio

if sys.platform == 'win32':
    asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())

works as of 14 november 2019

pythononwheels commented 4 years ago

solved with the above correction.