我有一个文件Foo.py
,其中包含以下代码。当我使用命令行运行文件时,python Foo.py
一切正常。但是,如果我使用python的CLI
python
import Foo
Foo.main()
Foo.main()
Foo.main()
第一个呼叫正常,第二个呼叫提出了所有警告,第一个是
(python:5389): Gtk-CRITICAL **: IA__gtk_container_add: assertion 'GTK_IS_CONTAINER (container)' failed
最后导致分段错误。我的代码有什么问题?
#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
import os
from PyQt4 import Qt
from PyQt4 import QtGui,QtCore
class Foo (QtGui.QWidget):
def __init__(self,parent=None):
super(Foo,self).__init__()
self.setUI()
self.showMaximized()
def setUI(self):
self.setGeometry(100,100,1150,650)
self.grid = QtGui.QGridLayout()
self.setLayout(self.grid)
#For convininece, I set different ui "concepts" in their own function
self.setInterfaceLine()
self.setMainText()
def setMainText(self):
#the main box, where information is displayed
self.main_label = QtGui.QLabel('Details')
self.main_text = QtGui.QLabel()
self.main_text.setAlignment(QtCore.Qt.AlignTop)
#Reading the welcome message from file
self.main_text.setText('')
self.main_text.setWordWrap(True) #To handle long sentenses
self.grid.addWidget(self.main_text,1,1,25,8)
def setInterfaceLine(self):
#Create the interface section
self.msg_label = QtGui.QLabel('Now Reading:',self)
self.msg_line = QtGui.QLabel('commands',self) #the user message label
self.input_line = QtGui.QLineEdit('',self) #The command line
self.input_line.returnPressed.connect(self.executeCommand)
self.grid.addWidget(self.input_line,26,1,1,10)
self.grid.addWidget(self.msg_label,25,1,1,1)
self.grid.addWidget(self.msg_line,25,2,1,7)
def executeCommand(self):
fullcommand = self.input_line.text() #Get the command
args = fullcommand.split(' ')
if fullcommand =='exit':
self.exit()
def exit(self):
#Exit the program, for now, no confirmation
QtGui.QApplication.quit()
def main():
app = QtGui.QApplication(sys.argv)
foo = Foo(sys.argv)
app.exit(app.exec_())
if __name__ in ['__main__']:
main()
答案 0 :(得分:4)
我能够在Python 3中重现,但不能在Python 2中重现。
这是关于垃圾收集和多个QApplications的东西。 Qt并不期望在同一个进程中使用多个QApplication,并且不管你是否每次都在创建一个新的QApplication,旧的应用程序都生活在解释器的某个地方。在main()
方法的第一次运行时,您需要创建一个QApplication
并通过将其存储在某个地方(例如全局模块或属性到全局范围内的类或实例)来防止它被垃圾收集<{1}}返回时不会被垃圾收集。
然后,在后续运行中,您应该访问现有的main()
而不是创建新的QApplication
。如果您有多个模块可能需要QApplication
但您不希望它们必须进行协调,则可以使用QApplication.instance()
访问现有实例,然后仅在不存在时实例化一个实例。
因此,将main()
方法更改为以下方法:
def main():
global app
app = QtGui.QApplication.instance()
if app is None:
app = QtGui.QApplication(sys.argv)
foo = Foo(sys.argv)
app.exit(app.exec_())
奇怪的是,您必须保留引用以确保QApplication
不是垃圾回收。因为每个进程只应该有一个进程,所以即使你没有保留对它的引用,我也会期望它永远存在。这就是Python 2中似乎发生的情况。理想情况下,上面不需要global app
行,但它可以防止这种垃圾收集业务。
关于这个QApplication
对象是如何不朽的,我们有点卡在中间......对于你来说,每次都能使用一个新对象太久了,但是不能长寿它可以让你在每次运行时重复使用它,而不必通过保持引用来阻止它的垃圾收集。这可能是PyQt中的错误,它可能应该为我们做参考。
答案 1 :(得分:1)
在一个进程中必须只有QApplication
个实例。 GUI框架没有为多应用程序模式做好准备。
答案 2 :(得分:1)
我实际上无法重现问题,这至少表明代码没有根本错误。
问题可能是由main
函数返回时的一些垃圾收集问题引起的(删除顺序可能无法预测)。
在事件循环退出后尝试放置del foo
。