retrieving a return code from a thread
Diez B. Roggisch
deets_noospaam at web.de
Sun Feb 8 11:13:37 EST 2004
More information about the Python-list mailing list
Sun Feb 8 11:13:37 EST 2004
- Previous message (by thread): retrieving a return code from a thread
- Next message (by thread): Embedding - getting full error string
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
You could use a synchronized Queue (look into the docs) where the running thread(s) put their results. The main loop waits until some or all results are there, and then continues processing. -- Regards, Diez B. Roggisch
- Previous message (by thread): retrieving a return code from a thread
- Next message (by thread): Embedding - getting full error string
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list