我有这个建立连接的程序。当它尝试连接时,它会创建一个 ProgressDialog。当连接失败时,它应该干净地关闭 ProgressDialog,但它没有,它会出现段错误。
这是相关代码的简化示例。您可以通过运行此脚本并多次按 Enter 键来复制此行为,这将单击应用程序中的唯一按钮并触发代码尝试连接。
到目前为止,我只能弄清楚应用程序只有在第 53 行:'print('after_pulse')' 没有运行时才会崩溃,这表明'Pulse' 调用有问题,但我想不通出什么。
有谁知道是什么导致这段代码崩溃?
如果没有,您至少可以复制这种行为吗?
眼镜:
Ubuntu 12.04
Python 2.7.3
wxPython 2.8.12.1
编辑:没有扭曲代码的小得多的示例程序。
#!/usr/bin/env python
'''test2'''
import wx # Must be imported before any other wx modules
class TestFrame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None, title='TestFrame')
self.button = wx.Button(self, label='test')
self.button.Bind(wx.EVT_BUTTON, self.button_handler)
self.button.SetFocus()
def button_handler(self, event):
pd_style = wx.PD_APP_MODAL|wx.PD_CAN_ABORT|wx.PD_SMOOTH
self.pd = wx.ProgressDialog('test_title', 'test_msg', parent=self,
style=pd_style)
self.pd.SetFocus()
self.timer = wx.Timer(self)
self.Bind(wx.EVT_TIMER, self.on_timer, self.timer)
self.timer.Start(1000/60, False)
wx.CallAfter(self.err_connection)
def on_timer(self, event):
print('before_pulse')
cont, _skip = self.pd.Pulse()
print('after_pulse')
if not cont:
self.err_connection()
def err_connection(self):
print('err_connection')
self.timer.Stop()
self.pd.Destroy()
self.button.SetFocus()
def main():
app = wx.App()
frame = TestFrame()
frame.Show()
app.MainLoop()
if __name__ == '__main__':
main()