Is there a way to keep tracebacks from coming up when you hit Cntl-c [keyboardInterupt] in a python script?

link|improve this question

feedback

5 Answers

up vote 6 down vote accepted
import sys
try:
    # your code
except KeyboardInterrupt:
    sys.exit(0) # or 1, or whatever

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 signal module, except it doesn't seem to work for me on Windows..

link|improve this answer
feedback

Catch the KeyboardInterrupt:

try:
    # do something
except KeyboardInterrupt:
    pass
link|improve this answer
feedback
try:
    your_stuff()
except KeyboardInterrupt:
    print("no traceback")
link|improve this answer
feedback

Catch it with a try/except block:

while True:
   try:
      print "This will go on forever"
   except KeyboardInterrupt:
      pass
link|improve this answer
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).

    import sys, signal

    try:
        # code...
    except KeyboardInterrupt: # Suppress tracebacks on SIGINT
        sys.exit(128 + signal.SIGINT) # http://tldp.org/LDP/abs/html/exitcodes.html
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.