Is it possible to suppress the "Terminated" message that is printed on stderr when the python interpreter receives a SIGTERM signal. I would like it to terminate silently.
I have tried using a different signal, such as SIGINT, but in this cases python prints out the running scripts Traceback and a "KeyboardInterrupt" message.