Re: thread and processes with python/GTK

2007-01-31 Thread awalter1
HI, I launch my application by 'python script.py' I've already add a sys.stdout.flush with no effect. if the idle_add is an alternative to thread, where to get details about its use (no reference in http://www.pygtk.org/docs/pygtk/ index.html, but very brief information in GTK+ documentation) In

Re: thread and processes with python/GTK

2007-01-30 Thread Thomas Guettler
Hi, how do you start the python app? Goes stdout to a terminal or a pipe? "python script.py" and "python script.py | cat" behave different. Maybe "sys.stdout.flush()" helps you. BTW, I switched from threads to idle_add for pygtk applications. awalter1 wrote: > Hello, > > I'm developping an app