PyQt5:使用QWebEngineVi时Python崩溃

2024-09-30 12:23:31 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在用PyQt5在macos上开发一个应用程序。我现在尝试将其移植到Windows7。我的应用程序使用QWebEngineView。以下是使用QWebEngineView的类:

class HTMLRenderer(QWebEngineView):

    def __init__(self, parent):
        ....

当我打开描述问题的xml文件时,它显示:

^{pr2}$

BEX64表示缓冲区溢出。在

但是Python已经停止工作了。但它在macos上运行得很好。QWebEngineView似乎不能在Windows7上使用。我怎么解决这个问题?在

非常感谢。在


Tags: 文件self应用程序initdefmacosxmlpyqt5

热门问题