Sobald Sie in Python eine umfangreiche Berechnung durchgeführt haben, kann es schwierig sein, Strg-C zu stoppen:
$ python3 cext09.py
^C^C^C^C^C^C #
^Z
zsh: suspended python3 cext09.py
$ jobs
[1] - running emacs cext09.c
[2] + suspended python3 cext09.py
$ kill %2
[2] + terminated python3 cext09.py
signal
import signal
signal.signal(signal.SIGINT, signal.SIG_DFL)
Recommended Posts