Skip to content

Instantly share code, notes, and snippets.

@anna-hope
Created February 16, 2014 19:52
Show Gist options
  • Save anna-hope/9039683 to your computer and use it in GitHub Desktop.
Save anna-hope/9039683 to your computer and use it in GitHub Desktop.
Python equivalent of a useless machine
from os import getpid, kill
from signal import SIGTERM
kill(getpid(), SIGTERM)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment