> Hi Trevor,
>
> Thus spoketh "Trevor J. Christensen"
> unto us on Wed, 9 Feb 2011 09:54:13 -0700:
>
> > Under Windows XP, the following simple program crashes after 20
> > seconds or so with the following error:
> >
> > TclStackFree: incorrect freePtr. Call out of sequence?
> >
> > It beh
> The problem is that you must _n e v e r_ access the tk event loop
> from more than one thread. The best practice is to always run the
> mainloop () within the main program thread and, if child threads are
> really necessary, to use e.g. threading.Condition or Queue.Queue
> objects to handle t
The following simple program crashes after about 20 seconds or so with
the following error:
TclStackFree: incorrect FreePtr. Call out of sequence?
It behaves the same under Python 2.6 and Python 2.7 under Window XP
service pack 2.
I have a hunch it has to do with Tk/Tcl's multithreading model.
Hi Trevor,
Thus spoketh "Trevor J. Christensen"
unto us on Wed, 9 Feb 2011 09:54:13 -0700:
> Under Windows XP, the following simple program crashes after 20 seconds
> or so with the following error:
>
> TclStackFree: incorrect freePtr. Call out of sequence?
>
> It behaves the same under pyt
Under Windows XP, the following simple program crashes after 20 seconds
or so with the following error:
TclStackFree: incorrect freePtr. Call out of sequence?
It behaves the same under python 2.6 and python 2.7.
I suspect it has something to do with Tk/Tcl's multithreading model. I
did disco