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

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'

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'