"James Harris" <[email protected]> writes: > I have a multithreaded app that I want to be able to shut down easily > such as by hitting control-c or sending it a signal.
Set the daemon flag on the worker threads, so when the main thread exits, the workers also exit. -- https://mail.python.org/mailman/listinfo/python-list
