def quit(self):
"""
Stops the connection from receiving and sends the quit signal.
"""
# Avoid unclean exit by interfering with response to pending query
if self._tel_lock.acquire():
self.stop_recv.set()
self._tel_lock.release()
self._send("quit")
评论列表
文章目录