Is there a way to keep tracebacks from coming up when you hit Cntl-c [keyboardInterupt] in a python script?
|
feedback
|
Is the simplest way, assuming you still want to exit when you get a Ctrl-C. If you want to trap it without a try/except, you can use a recipe like this using the | ||||
|
feedback
|
|
Catch the
| |||
|
feedback
|
|
Catch it with a try/except block:
| |||
|
feedback
|
|
Also note that by default the interpreter exits with the status code 128 + the value of SIGINT on your platform (which is 2 on most systems).
| |||
|
feedback
|