retrieving the return code from a spawned thread.

JY j-y.nief at wanadoo.fr
Sun Feb 22 03:48:06 EST 2004


hi all,

       I would like to know how I can retrieve in my main thread (see
[A]) the
return code from a thread (see [B]) that I launched :

[B]
class example(threading.Thread):

    def __init__(self, filename):
        self.filename = filename
        threading.Thread.__init__(self)
        self.start()

    def run(self):
         ........
         rc = os.system("command example")

[A] in the main thread:
.....
thrdExample = []
thrdExample.append(example(file))
.....

once thrdExample[i] is not active anymore, how can I test its return
code "rc" if the main thread ??

thanks in advance,
JY



More information about the Python-list mailing list