You are not logged in.
Pages: 1
Is it possible to execute a piece of code *after* KeyboardInterrupt. If yes, how to implement it?
Thank you
Offline
What's wrong with:
try:
blahblah
except KeyboardInterrupt:
do_your_thing
I guess I need to hear more about what specifically you're trying (but finding yourself unable) to do.
Offline
Pages: 1