You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 25, 2018. It is now read-only.
If I add a signal handler for SIGINT in pure asyncio and uvloop implementation, a ctrl-c is handled by the handler in contrast to tokio, where still a KeyboardInterrupt is raised.
If I add a signal handler for
SIGINTin pure asyncio and uvloop implementation, actrl-cis handled by the handler in contrast to tokio, where still aKeyboardInterruptis raised.I use Python 3.6.3 and tokio bbf9be4.
When I send
SIGINTviakill -s INT <pid>tokio raises also aKeyboardInterruptin contrast to asyncio and uvloop.It seems that
SIGINThandler is not recognized at all...