10
Tastiera si interrompe con il pool multiprocessore di Python
Come posso gestire gli eventi KeyboardInterrupt con i pool multiprocessore di Python? Qui c'è un semplice esempio: 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 …