gangesmaster wrote:

> calling sys.exit() from a thread does nothing... the thread dies, but
> the interpreter remains. i guess the interpreter just catches and
> ignore the SystemExit exception...
> 
> does anybody know of a way to overcome this limitation?

Use Thread.setDaemon(True) on your threads.

diez
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to