Sending ^C to Python subprocess objects on Windows

I have a test harness (written in Python) that needs to shut down the program under test (written in C) by sending it ^C. On Unix, proc.send_signal(signal.SIGINT) works perfectly. On Windows, t...