Cerberus icon indicating copy to clipboard operation
Cerberus copied to clipboard

在Windows 10下运行subdomain的时候会抛出NotImplementedError异常

Open wowtalon opened this issue 5 years ago • 0 comments

经测试在Windows 10下运行会抛出NotImplementedError异常,在subdomain.py头部加入以下代码即可解决:

import sys

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

wowtalon avatar Dec 23 '19 01:12 wowtalon