how can I tell when a Thread object dies?
Aahz Maruch
aahz at panix.com
Mon Nov 6 16:03:26 EST 2000
More information about the Python-list mailing list
Mon Nov 6 16:03:26 EST 2000
- Previous message (by thread): how can I tell when a Thread object dies?
- Next message (by thread): how can I tell when a Thread object dies?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
In article <8u73ne$rea$1 at nnrp1.deja.com>, yinger <ayinger1 at my-deja.com> wrote: > >... I mean besides threadObject.isalive(), because I want to be able to >tell when a thread terminates on a sys.exit() call. Don't do that. ;-) Just use return instead of sys.exit(). If you want to know when a thread finishes, use theadObject.join() or something like that. -- --- Aahz (Copyright 2000 by aahz at pobox.com) Androgynous poly kinky vanilla queer het <*> http://www.rahul.net/aahz/ Hugs and backrubs -- I break Rule 6 I guess I mostly see Life [tm] as a process of closing doors that you might want to go through. --Aahz
- Previous message (by thread): how can I tell when a Thread object dies?
- Next message (by thread): how can I tell when a Thread object dies?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list