退出整个程序时出现python线程异常错误

时间:2010-11-02 16:27:15

标签: python multithreading exception wxpython

嗨,伙计们,

我正在使用python 2.4.3和wxpython开发GUI。一切正常,除非我退出主程序(关闭GUI的主窗口)。奇怪的是,有时会出现这样的错误,有时根本就没有错误。虽然我从python邮件列表中找到了相同的错误报告(链接是http://bugs.python.org/issue1722344,但我不确定我的情况是否与此相同)。我不知道它是如何最终解决的,我应该怎么做才能克服这个问题。

来自控制台的错误消息如下。

Exception in thread Thread-1 (most likely raised during interpreter shutdown):
Traceback (most recent call last):
  File "/usr/lib/python2.4/threading.py", line 442, in __bootstrap
  File "/opt/company/workspace/username/application/src/mainwidget.py", line 1066, in run
  File "/usr/lib/python2.4/Queue.py", line 89, in put
  File "/usr/lib/python2.4/threading.py", line 237, in notify
exceptions.TypeError: exceptions must be classes, instances, or strings (deprecated), not NoneType
Unhandled exception in thread started by 
Error in sys.excepthook:

Original exception was:

以下是我的代码的一部分(线程相关代码已完成,我提取其余的主要操作)。当我使用GUI启动外部子进程时,同时创建一个wx.TextCtrl对象。此wx.TextCtrl对象用于提供外部子进程的输入和打印输出

class BashProcessThread(threading.Thread):
    def __init__(self, readlineFunc):
        threading.Thread.__init__(self)
        self.readlineFunc = readlineFunc
        self.lines = []
        self.outputQueue = Queue.Queue()
        self.setDaemon(True)

    def run(self):
        while True:
           line = self.readlineFunc()
           self.outputQueue.put(line)
           if (line==""):
            break
        return ''.join(self.lines)

    def getOutput(self):
        """ called from other thread """            
        while True:
            try:
                line = self.outputQueue.get_nowait()
                lines.append(line)
            except Queue.Empty:
                break
        return ''.join(self.lines)

class ExternalProcWindow(wx.Window):
    def __init__(self, parent, externapp):
        wx.Window.__init__(self, parent, -1, pos=wx.DefaultPosition, size = wx.Size(1200, 120))
        self.externapp=externapp
        self.prompt = externapp.name.lower() + '>>'
        self.textctrl = wx.TextCtrl(self, -1, '', size= wx.Size(1200, 120), style=wx.TE_PROCESS_ENTER|wx.TE_MULTILINE)
        self.default_txt = self.textctrl.GetDefaultStyle()
        self.textctrl.AppendText(self.prompt)
        self.outputThread = BashProcessThread(self.externapp.sub_process.stdout.readline)
        self.outputThread.start()
        self.textctrl.SetFocus()
        self.__bind_events()         
        self.Fit()

    def __bind_events(self):
        self.Bind(wx.EVT_TEXT_ENTER, self.__enter)

    def __enter(self, e):
        nl=self.textctrl.GetNumberOfLines()
        ln =  self.textctrl.GetLineText(nl-1)
        ln = ln[len(self.prompt):]     
        self.externapp.sub_process.stdin.write(ln+"\n")
        time.sleep(.3)
        self.textctrl.AppendText(self.outputThread.getOutput())

class ExternApp:
    def launch(self):
        self.sub_process = subprocess.Popen(launchcmd, stdin=subprocess.PIPE, 
                stdout=subprocess.PIPE, stderr=subprocess.PIPE)

1 个答案:

答案 0 :(得分:4)

问题是由使用threading.Thread.setDaemon引起的。设置守护进程的线程不会阻止Python解释器退出,但仍然会继续运行。因为Python在进程终止之前清理了环境,所以当从它们下面删除东西时,线程可能会遇到麻烦。这引发了一个异常,线程类试图为了方便而打印 - 但是,由于进程正在退出,它也会失败。

你可以尝试使异常静音,但这很棘手(如果线程做了大量的事情,它可能会隐藏一个真正的问题。但不是这里的情况。)或者你可以要求线程停止之前退出,而不是设置线程守护程序。或者你可以完全避免使用线程。我不记得wxPython是否有一个方便的机制来获取进程的输出甚至是异步I / O,但许多GUI工具包都有。而且总是扭曲,这一切都适合你。