Usually I can interrupt stuff with Ctrl+C, but sometimes when I'm using threads it doesn't work - example below.

Python 2.7.1+ (r271:86832, Apr 11 2011, 18:13:53) 
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import time
>>> time.sleep(100)
^CTraceback (most recent call last):
  File "<stdin>", line 1, in <module>
K    eyboardInterrupt
>>> import Queue
>>> q = Queue.Queue(maxsize=3)
>>> q.put(0)
>>> q.put(1)
>>> q.put(2)
>>> q.put(3)
^C^C^C^C^C^C^C^C

^C^C^C

^C^C
^C
@*#()#@#@$!!!!!

edit: Is there a way to get back to the interpreter? Solutions so far kill python completely and your existing namespace ..

link|improve this question

This seems to be specifically a threading issue; Ctrl-C works just fine to interrupt, for example, raw_input(). – Karl Knechtel Sep 6 '11 at 6:58
Only the main thread gets signals. – Keith Sep 6 '11 at 9:53
feedback

3 Answers

up vote 3 down vote accepted

You can kill the Python interpreter with Ctrl+\.

This will send a SIGQUIT instead of SIGINT.

link|improve this answer
Not if he has a stock Ubuntu system. – ʇsәɹoɈ Sep 6 '11 at 7:23
1  
@ʇsәɹoɈ Oops, you're right, I accidentally included a totally wrong shortcut (that explains the rofl from Matt). Don't know where my mind was. Back slash terminates python, alt+Back space terminates X. – phihag Sep 6 '11 at 7:29
thanks .. will the same thing happen behind the scenes if i just shut the terminal window? (oh look, a canberran!) – wim Sep 6 '11 at 9:11
@wim No, that will send a SIGTERM and/or SIGKILL. In practice, unless you messed with signal interception, the effect will be the same though. – phihag Sep 6 '11 at 9:17
feedback

A quick workaround for ^C failing is suspending the process with all threads first with ^Z and then killing it.

This works in Linux for many cases when ^C fails, and as I've just tested it works here too (tested on Python v.2.6.5):

Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56) [GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import Queue
>>> q = Queue.Queue(maxsize=3)
>>> q.put(0)
>>> q.put(1)
>>> q.put(2)
>>> [^C]
KeyboardInterrupt #does not kill the process
>>> [^Z - Suspends and exits to shell]
[1]+  Stopped                 python
#mdf:~$ kill -9 %%
[1]+  Killed                  python
link|improve this answer
feedback

A lazy way to do this is to open another window.

Do ps to get the PID.

Do kill to kill the offending process.

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.