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
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)
>
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()