<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Howdy. I may have found a bug, but because simple script will cause
    a segfault:<br>
    <blockquote>#!/usr/bin/env python<br>
      <br>
      import sys<br>
      from PyQt4 import Qt<br>
      from PyQt4.QtWebKit import QWebPage<br>
      <br>
      a = Qt.QApplication(sys.argv)<br>
      p = QWebPage()<br>
      hello = Qt.QLabel("Hello, World")<br>
      hello.show()<br>
      a.exec_()<br>
    </blockquote>
    This is with PyQt 4.9.3-4, Qt 4.8.0, Python2.7 on an Ubuntu 12.10
    box.<br>
    <br>
    You can add deleteLater() to avoid the segfault, but it shouldn't
    segfault just because you used the Python garbage collector.<br>
    <br>
    Thoughts?<br>
  </body>
</html>