Как я могу обрабатывать события KeyboardInterrupt с пулами многопроцессорности python? Вот простой пример:
from multiprocessing import Pool
from time import sleep
from sys import exit
def slowly_square(i):
sleep(1)
return i*i
def go():
pool = Pool(8)
try:
results = pool.map(slowly_square, range(40))
except KeyboardInterrupt:
# **** THIS PART NEVER EXECUTES. ****
pool.terminate()
print "You cancelled the program!"
sys.exit(1)
print "\nFinally, here are the results: ", results
if __name__ == "__main__":
go()
При запуске кода выше, KeyboardInterrupt
возникает, когда я нажимаю ^C
, но процесс просто зависает в этой точке, и я должен убить его извне.
Я хочу, чтобы в любой момент можно нажать ^C
и заставить все процессы выйти изящно.