Ver Mensaje Individual
  #7 (permalink)  
Antiguo 06/08/2012, 07:52
AlvaroG
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: Threads en python

Si ya estás usando PySide, quizás quieras usar hilos Qt, ya que de por sí tu interfaz gráfica correrá en un hilo de Qt.

La última vez que probé, tuve problemas al vincular señales con slots en diferentes hilos de Python, y tuve que convertir mi programa para que utilizara hilos de Qt. Quizás no te enfrentes al mismo problema, pero tenlo en cuenta.
> http://www.diotavelli.net/PyQtWiki/T...nals_and_Slots

Opinión más o menos oficial: http://www.mail-archive.com/pyqt@riv.../msg16052.html
Cita:
A general rule of thumb might be to use QThreads if you're going to interact somehow with Qt, and use Python threads otherwise. Though I find it difficult to imagine a thread *not* interacting with Qt at all...

BTW: remember that, with Qt, you don't need threads for many tasks that are sometimes solved with threads (a prominent example is network programming)
Investiga eso