我正在尝试使用提供的StoppableThread
课程作为另一个问题的答案:
import threading
# Technique for creating a thread that can be stopped safely
# Posted by Bluebird75 on StackOverflow
class StoppableThread(threading.Thread):
"""Thread class with a stop() method. The thread itself has to check
regularly for the stopped() condition."""
def __init__(self):
super(StoppableThread, self).__init__()
self._stop = threading.Event()
def stop(self):
self._stop.set()
def stopped(self):
return self._stop.isSet()
但是,如果我运行类似:
st = StoppableThread(target=func)
我得到:
TypeError:
__init__()
得到了一个意外的关键字参数“目标”
可能是对如何使用它的疏忽。