How to handle a signal.SIGINT on a Windows OS machine?
I am trying the code pasted below on Windows, but instead of handling signal, it is killing the process. However, the same code is working in Ubuntu. import os, sys import time import signal def f...