Reputation: 29445
I'm using red hat 5 linux, and I would like to know what key combination raises a KeyboardInterrupt exception in python 2.6. I know that it is Ctrl+ c under windows.
Regards,
Upvotes: 1
Views: 890
Reputation: 798666
It's still CtrlC. Or you could send a SIGINT
to the process.
Upvotes: 7