eric6/WebBrowser/WebBrowserView.py

branch
without_py2_and_pyqt4
changeset 7192
a22eee00b052
parent 6942
2602857055c5
child 7201
6b42677d7043
equal deleted inserted replaced
7191:960850ec284c 7192:a22eee00b052
7 """ 7 """
8 Module implementing the web browser using QWebEngineView. 8 Module implementing the web browser using QWebEngineView.
9 """ 9 """
10 10
11 from __future__ import unicode_literals 11 from __future__ import unicode_literals
12 try:
13 str = unicode # __IGNORE_EXCEPTION__
14 except NameError:
15 pass
16 12
17 import os 13 import os
18 14
19 from PyQt5.QtCore import pyqtSignal, pyqtSlot, PYQT_VERSION, Qt, QUrl, \ 15 from PyQt5.QtCore import pyqtSignal, pyqtSlot, PYQT_VERSION, Qt, QUrl, \
20 QFileInfo, QTimer, QEvent, QPoint, QPointF, QDateTime, QStandardPaths, \ 16 QFileInfo, QTimer, QEvent, QPoint, QPointF, QDateTime, QStandardPaths, \

eric ide

mercurial