Skip to content Skip to sidebar Skip to footer
Showing posts with the label Signal Handling

Can I Send Sigint To A Python Subprocess On Windows?

I've got a Python script managing a gdb process on Windows, and I need to be able to send a SIG… Read more Can I Send Sigint To A Python Subprocess On Windows?

Python - Handle CTRL+D With 'import Signal'

I can currently handle CTRL+C via: def hand_inter(signum, frame): print 'hey, nice job.'… Read more Python - Handle CTRL+D With 'import Signal'