> > >I am trying to write a threaded applet with PyGTK, starting up a thread > > >to get data off the Internet without blocking the UI. > I guess I'll either have to wait for PyGtk to get threading working > properly, or rewrite it with a fork(), pipe and pickle. Ugh.
gtk.input_add is probably what you want here. Don't forget that cooperative threading is still an option. I've found it to be really excellent. You don't have to worry about locks, races or deadlocks. (see the faq) I use it extensively in meld. Stephen. -- Stephen Kennedy <[EMAIL PROTECTED]> http://meld.sf.net visual diff and merge _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
