Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm running this my simple code:

import threading, time

class reqthread ( threading.Thread ):
  def __init__ (self):
    threading.Thread.__init__(self)

  def run ( self ):
    for i in range(0,10):
      time.sleep(1)
      print '.'

try:
  thread=reqthread()
  thread.start()
except (KeyboardInterrupt, SystemExit):
  print '\n! Received keyboard interrupt, quitting threads.\n'

But when i run it, it prints

$ python prova.py  
`
.
.
^C.
.
.
.
.
.
.
.
Exception KeyboardInterrupt in <module 'threading' from '/usr/lib/python2.6/threading.pyc'> ignored
`

In fact python thread ignore my Ctrl+C keyboard interrupt and doesn't print 'Reiceived Keyboard Interrupt'. Why? What is wrong with this code?

share|improve this question

1 Answer

up vote 21 down vote accepted

Try

try:
  thread=reqthread()
  thread.daemon=True
  thread.start()
  while True: time.sleep(100)
except (KeyboardInterrupt, SystemExit):
  print '\n! Received keyboard interrupt, quitting threads.\n'

Without the call to time.sleep, the main process is jumping out of the try...except block too early, so the KeyboardInterrupt is not caught. My first thought was to use thread.join, but that seems to block the main process (ignoring KeyboardInterrupt) until the thread is finished.

thread.daemon=True causes the thread to terminate when the main process ends.

share|improve this answer
I believe a timeout on join, i.e. while thread.isAlive: thread.join(5) will also work to keep the main thread responsive to exceptions. – Jan-Philip Gehrcke Sep 11 '12 at 19:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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