Как удалить трекбек на Python, когда Ctrl c

import signal
import sys
signal.signal(signal.SIGINT, lambda x, y: sys.exit(0))
Flow