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
By default a running python script can't be canceled by pressing CTRL+ C.
It'd be nice to be able to stop the bot when using a standalone terminal without closing the whole window.
Example situation
Nice to have when not using an IDE which handles the python process and starting the bot in a standalone command line window.
Additional context
Ctrl + C sends a signal, SIGINT, to the Python process, which the Python interpreter handles by raising the KeyboardInterrupt exception in the currently-running scope.
Description
By default a running python script can't be canceled by pressing CTRL+ C.
It'd be nice to be able to stop the bot when using a standalone terminal without closing the whole window.
Example situation
Nice to have when not using an IDE which handles the python process and starting the bot in a standalone command line window.
Additional context
https://askubuntu.com/a/1222989/1154787
The text was updated successfully, but these errors were encountered: