【发布时间】:2014-10-29 05:12:17
【问题描述】:
我有一个threading.thread 的子类,它正在运行cherrypy 服务器。我的join() 方法如下所示:
def join(self):
cherrypy.engine.exit()
super(MyThread, self).join()
我必须明确地调用super.join()吗?明确停止cherrypy服务器后它到底做了什么?
【问题讨论】:
标签: python multithreading python-2.7 cherrypy