J'exécute ce code simple :
import threading, time
class reqthread(threading.Thread):
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')
Mais quand je l'exécute, il imprime
$ python prova.py
.
.
^C.
.
.
.
.
.
.
.
Exception KeyboardInterrupt in <module 'threading' from '/usr/lib/python2.6/threading.pyc'> ignored
En fait, le fil de python ignore mon Ctrl + C interruption du clavier et n'imprime pas Received Keyboard Interrupt
. Pourquoi ? Quel est le problème de ce code ?