Facundo Batista pisze: >> gobject.threads_init () >> gtk.gdk.threads_init () > > For w3af to behave correctly both in windows and linux, I had to do this: > > if sys.platform == "win32": > gobject.threads_init() > else: > gtk.gdk.threads_init()
I use only gobject.threads_init() and my programs work like a charm on both systems. -- Jarek Zgoda http://zgodowie.org/ "We read Knuth so you don't have to" - Tim Peters _______________________________________________ pygtk mailing list [email protected] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
