Hilos con Pygtk:
Código Python:
Ver originalimport threading
gtk.gdk.threads_init()
def animacion(self):
tupla = ("ruta_imagen_1","ruta_imagen_2","ruta_imagen_3")
for i in range(0,2):
sleep(0.05)
gtk.gdk.threads_enter()
self.gtkImage.set_from_file(self.tupla[i])
gtk.gdk.threads_leave()
def thread(self):
hilo = threading.Thread(target=animacion)
hilo.start()
Y cuando quieres mostrar la animación, llamas la función
thread.