<div dir="ltr">Consider this little snippet:<div><br></div><div>    from PyQt5.Qt import *<br>    from PyQt5.QtWebEngineWidgets import QWebEngineView<br><br>    if __name__ == '__main__':<br>        MAKE_IT_CRASH = True<br><br>        if MAKE_IT_CRASH:<br>            QCoreApplication.setAttribute(Qt.AA_ShareOpenGLContexts)<br>            QCoreApplication.setAttribute(Qt.AA_UseOpenGLES)<br><br>        app = QApplication([])<br>        browser = QWebEngineView()<br>        browser.load(QUrl("<a href="http://www.google.com">http://www.google.com</a>"))<br>        browser.show()<br>        app.exec_()<br></div><div><br></div><div>If you set MAKE_IT_CRASH to true you should get a deterministic crash when app exits</div><div><br></div><div>I've tested with an existing or empty cache (ie: removing C:\Users\<username>\AppData\Local\python)</div><div><br></div><div>Tested on:</div><div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div>PyQt5==5.13.0</div><div>PyQt5-sip==4.19.18</div><div>PyQtWebEngine==5.13.0</div><div>win7</div><div>python3.6.2 x86</div></blockquote><div><br></div><div>Could anyone please confirm this bug will also happen on different systems?</div></div>