Dennis Lee Bieber wrote:
> On Sat, 02 Apr 2011 14:12:38 +0930, Adrian Casey
> declaimed the following in gmane.comp.python.general:
>
>> Can someone please explain why this simple PyQt4 application never exits?
>>
>> #!/usr/bin/env python
>> from PyQt4 import QtCore
>> import sys
>> class foo(Q
Can someone please explain why this simple PyQt4 application never exits?
#!/usr/bin/env python
from PyQt4 import QtCore
import sys
class foo(QtCore.QObject):
def __init__(self, parent):
QtCore.QObject.__init__(self, parent)
self.parent = parent