Nie, myślę, że nie jest to zduplikowane pytanie, ma więcej do zrobienia...
W każdym razie, Twoje pytanie chcesz przekazać więcej argumentów, W pythonie możesz przekazać wiele argumentów wywołać 'yourMethod(*args, **kw)'; przykład;
class Worker(QThread):
.
.
def __init__(self, parent, *args, **kw):
QThread.__init__(self, parent)
self.yourInit(*args, **kw)
.
.
def yourInit (self, x, y, z):
print x, y, z
.
.
class MyClass(QObject):
.
.
def __init__(self):
super(MyClass, self).__init__()
.
.
x = 1000
y = 'STRING'
z = [0, 1, 2, 3, 4]
thread1 = Worker(self, x, y, z)
.
.
Pozdrawiam,