Skip to content

Instantly share code, notes, and snippets.

@voronind
voronind / python-mt-interrupting.py
Last active August 29, 2015 14:19
Python Multi-threaded Program Interrupting
import time
import threading
"""
Example from article:
http://snakesthatbite.blogspot.ru/2010/09/cpython-threading-interrupting.html
"""
shutdown_event = threading.Event()