Re: exception from a thread

2007-06-28 Thread Diez B. Roggisch
_spitFIRE schrieb: > assume a scenario, where there is a class that for doing some work, > spawns lot of threads. > > class X: > def __init__(self): > # Spawns some threads to > # do some work > > now, assuming that at least one of the threads encounters a problem > while doin

exception from a thread

2007-06-28 Thread _spitFIRE
assume a scenario, where there is a class that for doing some work, spawns lot of threads. class X: def __init__(self): # Spawns some threads to # do some work now, assuming that at least one of the threads encounters a problem while doing work and throws an exception. Would I