Re: Problem with Thread.join()

2007-08-21 Thread Greg Copeland
On Aug 20, 11:12 am, "Robert Dailey" <[EMAIL PROTECTED]> wrote: > Hey guys, > > Sorry for taking so long to respond. I had actually figured out what > this issue is over on the wxPython mailing list. The issue was that I > was attempting to configure wxPython controls from a remote thread, > which

Re: Problem with Thread.join()

2007-08-20 Thread Robert Dailey
Hey guys, Sorry for taking so long to respond. I had actually figured out what this issue is over on the wxPython mailing list. The issue was that I was attempting to configure wxPython controls from a remote thread, which is apparently illegal due to some state persistance issues. Thanks all for

Re: Problem with Thread.join()

2007-08-20 Thread James Matthews
Post some code so we can see the issue! I would say that the issue is where your function that you are calling isn't exiting! On 8/20/07, Gabriel Genellina <[EMAIL PROTECTED]> wrote: > > En Mon, 13 Aug 2007 20:10:53 -0300, Robert Dailey <[EMAIL PROTECTED]> > escribi�: > > > I have a class that der

Re: Problem with Thread.join()

2007-08-20 Thread Gabriel Genellina
En Mon, 13 Aug 2007 20:10:53 -0300, Robert Dailey <[EMAIL PROTECTED]> escribi�: > I have a class that derives from threading.Thread. To signal the thread > to > exit its infinite loop, I set an Event. Once the thread checks > Event.isSet() > and it is true, it proceeds to break out of the lo

Problem with Thread.join()

2007-08-13 Thread Robert Dailey
Hi, I have a class that derives from threading.Thread. To signal the thread to exit its infinite loop, I set an Event. Once the thread checks Event.isSet() and it is true, it proceeds to break out of the loop and exit the function. In the main thread, right after calling Event.set(), I call Thread