Instead of forwarding the signal to the debuggee from Python, you could try just ignoring it. The following worked for me:
import signal
signal.signal(signal.SIGINT, signal.SIG_IGN)
import subprocess
cat = subprocess.Popen(['cat'])
subprocess.call(['gdb', '--pid=66275'])
--pid=%d' % cat.pid])
With this I was able to ^C repeatedly inside GDB and interrupt the debuggee without a problem, however I did see some weird behavior.
Incidentally, I also had no problem when forwarding the signal to the target process.
import subprocess
cat = subprocess.Popen(['cat'])
import signal, os
signal.signal(signal.SIGINT,
lambda signum, frame: os.kill(cat.pid, signum))
subprocess.call(['gdb', '--pid=%d' % cat.pid])
So, maybe something else is going on in your case? It might help if you posted some code that breaks.
