Python AttributeError: Obiekt nie ma atrybutu

Mam klasę MyThread. W tym mam próbkę metody. Próbuję uruchomić go z tego samego kontekstu obiektu. Spójrz na kod:

class myThread (threading.Thread):
    def __init__(self, threadID, name, counter, redisOpsObj):
        threading.Thread.__init__(self)
        self.threadID = threadID
        self.name = name
        self.counter = counter
        self.redisOpsObj = redisOpsObj

    def stop(self):
        self.kill_received = True

    def sample(self):
        print "Hello"

    def run(self):
        time.sleep(0.1)
        print "\n Starting " + self.name
        self.sample()

Wygląda bardzo prosto, prawda? Ale kiedy go uruchomię, otrzymuję ten błąd

AttributeError: 'myThread' object has no attribute 'sample' Teraz mam tę metodę, właśnie tam. Więc co się stało? Proszę pomóż

Edytuj: To jest stacktrace

Starting Thread-0

Starting Thread-1
Exception in thread Thread-0:
Traceback (most recent call last):
File "/usr/lib/python2.6/threading.py", line 525, in __bootstrap_inner
self.run()
File "./redisQueueProcessor.py", line 51, in run
self.sample()
AttributeError: 'myThread' object has no attribute 'sample'

Exception in thread Thread-1:
Traceback (most recent call last):
File "/usr/lib/python2.6/threading.py", line 525, in __bootstrap_inner
self.run()
File "./redisQueueProcessor.py", line 51, in run
self.sample()
AttributeError: 'myThread' object has no attribute 'sample'

Nazywam to w ten sposób

arThreads = []
maxThreads = 2;

for i in range( maxThreads ):
    redisOpsObj = redisOps()
    arThreads.append( myThread(i, "Thread-"+str(i), 10, redisOpsObj) )

Niestety nie mogę opublikować kodu klasy redisOps. Ale mogę cię zapewnić, że działa dobrze

questionAnswers(7)

yourAnswerToTheQuestion