Hi ,
I am a newbie to python and I am trying to send a signal to my application using a thread.
Here's my code:
import sys
from PyQt4 import QtGui, QtCore
from PyQt4.QtCore import *
class MyThread(QtCore .QThread,QtCore .QObject):

def __init__(self, parent):

QtCore.QThread. __init__(self, parent)
QtCore.QObject. __init__(self,p arent)
def run(self):...