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
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
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
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
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