I just recently came across this post from the mailing list:
http://mail.python.org/pipermail/python-list/2005-February/265569.html
in which the error with daemon threads at interpreter shutdown is discussed.
I have experienced this problem in numerous programs that I've written and
wanted to wri
Alec Wysoker wrote:
I have several programs that have two or more threads. The threads
> that are not the main thread are daemon threads, i.e. the fact
> that they are running should not stop the program from terminating
> if the main thread (the only non-daemon thread) terminates.
Traceback (mos
I have several programs that have two or more threads. The threads that are
not the main thread are daemon threads, i.e. the fact that they are running
should not stop the program from terminating if the main thread (the only
non-daemon thread) terminates. I do not join to these threads, but j