Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Sending Signal

  • kill
import signal
import os

print("before")
os.kill(os.getpid(), signal.SIGUSR1)
print("after")

before
User defined signal 1: 30