from signal import signal, SIGINT
signal(SIGINT, lambda _, __: exit())
print('No message or stack trace will be printed when you Ctrl+C this program.')
from time import sleep
sleep(999999999)
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)