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 has been 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.
I develop an asyncio RPC library, which solely depends on Python >=3.5 on the remote side (lazy remote module import via MetaPathFinder): https://github.com/diefans/debellator
Just for curiosity and possible performance gains, I also try different asyncio implementations (uvloop, tokio) for the local/master side.
All in all I, learn asyncio and stumble upon issues/features and so on ;)
If I add a signal handler for
SIGINT
in pure asyncio and uvloop implementation, actrl-c
is handled by the handler in contrast to tokio, where still aKeyboardInterrupt
is raised.I use Python 3.6.3 and tokio bbf9be4.
When I send
SIGINT
viakill -s INT <pid>
tokio raises also aKeyboardInterrupt
in contrast to asyncio and uvloop.It seems that
SIGINT
handler is not recognized at all...The text was updated successfully, but these errors were encountered: