python3.2 中的线程不能被守护吗?

Can a Thread not be daemonized in python3.2?

我是 运行 python-3.2 中的脚本 Raspberry Pi 2 模型 B

线程看起来像这样:

myThread = threading.Thread(target=someFunction, args=(arg1,arg2,arg3),
           daemon=True)
myThread.start()

每次调用此线程时。这个错误被触发:

TypeError: __init__() got an unexpected keyword argument 'daemon'

我知道 Python-3.4 没有 Debian Wheezy Version 7.10 的稳定版本,因此我必须解决 python 3.2

具有讽刺意味的是,Python 3.2 Documentation 确实声明 daemon 是一个可用的布尔值。

这是什么故障,我该如何解决?

daemon 参数是在 3.3 版中添加的,see。在以前的版本中设置标志是这样的:

myThread = threading.Thread(target=someFunction, args=(arg1,arg2,arg3))
myThread.daemon = True
myThread.start()