Hi, On Fri, Jan 05, 2018 at 08:28:25PM -0400, David Bremner wrote: > Sure, here is a stracktrace from > > /usr/bin/python3 testbrowser_webengine.py url=https://www.debian.org
Can you please try the attached small change to testbrowser_webengine.py? I thought that this flag is only needed on Windows, but who knows. Also I think the url= is wrong, you should just pass the URL directly. > If you let me know which debug symbol packages to install, I'm happy to > try again with more symbols. If that change does not help, then please try with these packages: libqt5gui5-dbgsym libqt5quickwidgets5-dbgsym libqt5webenginewidgets5-dbgsym libqt5widgets5-dbgsym Also please let me know which Qt platform you are using (xcb or wayland) and which graphics card/driver you have (I saw some graphics specific bugs on upstream bugtracker). -- Dmitry Shachnev
--- ./testbrowser_webengine.py.orig 2018-01-09 13:50:35.070024955 +0300
+++ ./testbrowser_webengine.py 2018-01-09 14:18:15.445976504 +0300
@@ -23,7 +23,7 @@
import sys
import argparse
-from PyQt5.QtCore import QUrl
+from PyQt5.QtCore import QUrl, Qt
from PyQt5.QtWidgets import QApplication
from PyQt5.QtWebEngineWidgets import QWebEngineView
@@ -37,6 +37,7 @@
if __name__ == '__main__':
args = parse_args()
+ QApplication.setAttribute(Qt.AA_ShareOpenGLContexts)
app = QApplication(sys.argv)
wv = QWebEngineView()
signature.asc
Description: PGP signature
_______________________________________________ Python-modules-team mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

