When I'm in a python application (the python shell, for instance), pressing ctrl + \ results in
>>> Quit (core dumped)
Why is this, and how can I avoid this? It is very inconvenient if application bails out whenever I press ctrl + \ by accident.
CTRL-\ is the Linux key that generates the QUIT
signal. Generally, that signal causes a program to terminate and dump core. This is a feature of UNIX and Linux, wholly unrelated to Python. (For example, try sleep 30
followed by CTRL-\.)
If you want to disable that feature, use the stty command.
From the Linux command line, before Python starts:
stty quit undef
The python module signal
is convenient to deal with this.
import signal
# Intercept ctrl-c, ctrl-\ and ctrl-z
def signal_handler(signal, frame):
pass
signal.signal(signal.SIGINT, signal_handler)
signal.signal(signal.SIGQUIT, signal_handler)
signal.signal(signal.SIGTSTP, signal_handler)
Just add handlers to the signal that (in this case) do nothing.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With