Re: [Tkinter-discuss] Help: _tkinter.createfilehandler not supported for threaded Tcl

2005-06-22 Thread Jeff Epler
My system is: Fedora Core 2 python-2.3.3-6 tk-8.4.5-8 I wrote the following program, in which a worker thread writes to a pipe which is read by the main thread by a handler that was created by 't.tk.createfilehandler()'. The program seems to work as expected, except that the thread usu

Re: [Tkinter-discuss] Help: _tkinter.createfilehandler not supported for threaded Tcl

2005-06-22 Thread Michael Lange
On Tue, 21 Jun 2005 13:24:19 -0500 Jeff Epler <[EMAIL PROTECTED]> wrote: > > I think this means the .tk attribute of any widget object, or the object > returned by _tkinter.create() if you aren't using Tkinter widget > classes. > > >>> import Tkinter > >>> t = Tkinter.Tk() > >>> t.tk > > > Jef