Re: [PyQt] Possible bug: Instantiating QWebPage results in segfault

2013-03-07 Thread Ken Kinder
On 03/02/2013 01:54 AM, Phil Thompson wrote: > Qt has its on internal, undocumented (and probably version dependent) > requirements about the order in which C++ dtors are called. The Python > garbage collector does not destroy objects in any predictable order. > From time to time the two clash. Apa

Re: [PyQt] Possible bug: Instantiating QWebPage results in segfault

2013-03-02 Thread Phil Thompson
On Fri, 01 Mar 2013 23:44:51 -0700, Ken Kinder wrote: > Howdy. I may have found a bug, but because simple script will cause a > segfault: > > #!/usr/bin/env python > > import sys > from PyQt4 import Qt > from PyQt4.QtWebKit import QWebPage > > a = Qt.QApplication(sys.argv) >

[PyQt] Possible bug: Instantiating QWebPage results in segfault

2013-03-01 Thread Ken Kinder
Howdy. I may have found a bug, but because simple script will cause a segfault: #!/usr/bin/env python import sys from PyQt4 import Qt from PyQt4.QtWebKit import QWebPage a = Qt.QApplication(sys.argv) p = QWebPage() hello = Qt.QLabel("Hello, World") hello.show()